OLD | NEW |
1 --- | 1 --- |
2 layout: default | 2 layout: default |
3 title: "Use IndexedDB" | 3 title: "Use IndexedDB" |
4 description: "Use IndexedDB for persistence and offline capability for your app.
" | 4 description: "Use IndexedDB for persistence and offline capability for your app.
" |
5 has-permalinks: true | 5 has-permalinks: true |
6 tutorial: | 6 tutorial: |
7 id: indexeddb | 7 id: indexeddb |
8 next: | 8 next: cmdline/ |
9 next-title: "Home" | 9 next-title: "Write Command-Line Apps" |
10 prev: forms/ | 10 prev: forms/ |
11 prev-title: "Get Input from a Form" | 11 prev-title: "Get Input from a Form" |
12 --- | 12 --- |
13 | 13 |
14 {% capture whats_the_point %} | 14 {% capture whats_the_point %} |
15 | 15 |
16 * IndexedDB is a new standard for client-side storage in modern web browsers. | 16 * IndexedDB is a new standard for client-side storage in modern web browsers. |
17 * Client-side storage provides persistence, offline capability, | 17 * Client-side storage provides persistence, offline capability, |
18 and other advantages. | 18 and other advantages. |
19 * IndexedDB lets you store significant amounts of structured data. | 19 * IndexedDB lets you store significant amounts of structured data. |
(...skipping 702 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
722 | 722 |
723 ###What next? | 723 ###What next? |
724 | 724 |
725 You've completed the tutorials! | 725 You've completed the tutorials! |
726 Check out the Dart | 726 Check out the Dart |
727 [code samples](/samples/) and [articles](/articles/). | 727 [code samples](/samples/) and [articles](/articles/). |
728 | 728 |
729 {% endcapture %} | 729 {% endcapture %} |
730 | 730 |
731 {% include tutorial.html %} | 731 {% include tutorial.html %} |
OLD | NEW |