-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (38 loc) · 1.71 KB
/
index.html
File metadata and controls
42 lines (38 loc) · 1.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Juurni | a browser based journaling app.</title>
</head>
<body>
<div class="container">
<h1>Juurni | a browser based journaling app.</h1>
<p>
A project for test driving indexedDB in the browser. Juurni is a browser based daily journaling app that allows users to select a calendar date
and add ideas, memories, moments, notes, recollections, you name it, for the day. Each journal entry is saved to the browsers indexeddb as a key/pair object.
Being that this project is an exploration of indexedDB, not all CRUD actions have been implemented. In order to view the saved journal entries,
you must use the browser's developer tools and navigate to Application > Storage > indexedDB. I do not plan to create a release version of this the project
as there are many, feature rich, journaling applications available. Juurnii makes use of the calendar plugin offered by <a href="https://github.com/yscoder/Calendar" target="_blank">YSCoder</a>.
</p>
<h2>Dependencies</h2>
<ul>
<li>Calendar by YS Coder</li>
<li>JQuery</li>
<li>Browser support for IndexedDB</li>
</ul>
<h2>Features</h2>
Juurni uses a few features such as:
<ul>
<li>LocalStorage / IndexedDB</li>
<li>Toast notifications</li>
<li>Calendar by YSCoder</li>
</ul>
<h2>Versions</h2>
<ul>
<li><a href="https://xnodeoncode.github.io/juurni/v1/" target="_blank">Juurni v1</a></li>
<li><a href="https://xnodeoncode.github.io/juurni/v2/" target="_blank">Juurni v2</a></li>
</ul>
</div>
</body>