https://github.com/cybertoothca/ember-route-web-storage
Use web storage to save data scoped to the active route.
https://github.com/cybertoothca/ember-route-web-storage
ember-addon emberjs localstorage sessionstorage webstorage
Last synced: 23 days ago
JSON representation
Use web storage to save data scoped to the active route.
- Host: GitHub
- URL: https://github.com/cybertoothca/ember-route-web-storage
- Owner: cybertoothca
- License: mit
- Created: 2017-12-21T04:45:09.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-12-21T06:32:47.000Z (over 8 years ago)
- Last Synced: 2025-03-16T02:28:00.211Z (about 1 year ago)
- Topics: ember-addon, emberjs, localstorage, sessionstorage, webstorage
- Language: JavaScript
- Homepage: http://docs.ember-route-web-storage.cybertooth.io
- Size: 14.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# ember-route-web-storage
[](http://badge.fury.io/js/ember-route-web-storage)  [](http://circleci.com/gh/cybertoothca/ember-route-web-storage) [](http://codeclimate.com/github/cybertoothca/ember-route-web-storage)  [](http://emberobserver.com/addons/ember-route-web-storage) [](LICENSE.md)
## [DOCS](http://docs.ember-route-web-storage.cybertooth.io)
## [DEMO](http://docs.ember-route-web-storage.cybertooth.io/#hbs)
### Tested Against
[](https://circleci.com/gh/cybertoothca/ember-route-web-storage)
[](https://circleci.com/gh/cybertoothca/ember-route-web-storage)
[](https://circleci.com/gh/cybertoothca/ember-route-web-storage)
[](https://circleci.com/gh/cybertoothca/ember-route-web-storage)
[](https://circleci.com/gh/cybertoothca/ember-route-web-storage)
[](https://circleci.com/gh/cybertoothca/ember-route-web-storage)
# Collaboration Information
This README outlines the details of collaborating on this Ember add-on.
## Installation
* `git clone git@github.com:cybertoothca/ember-route-web-storage.git` this repository
* `cd ember-route-web-storage`
### With NPM
```
npm install
```
### With Yarn
```
yarn
```
## Running
* `ember serve`
* Visit your app at [http://localhost:4200](http://localhost:4200).
## Running Tests
* `npm test` (Runs `ember try:each` to test your addon against multiple Ember versions)
* `ember test`
* `ember test --server`
## Building
* `ember build`
For more information on using ember-cli, visit [https://ember-cli.com/](https://ember-cli.com/).
# Linking This Add-on For Local Testing
## Linking
1. From the command line at the root of __this__ project run the
`npm link` command to _link_ this add-on within your local
node repository.
1. From the _other_ Ember project that you wish to test this add-on
in, execute the following command:
`npm link ember-route-web-storage`.
1. Now in that same _other_ Ember project, you should go into the
`package.json` and add the ember add-on with the version _*_. It will
look something like this: `"ember-route-web-storage": "*"`. Now
when/if you execute `npm install` on this _other_ project it
will know to look for the linked add-on rather than fetch it from
the central repository.
## Unlinking
1. Remove the add-on from your local node repository with the following
command (that can be run anywhere):
`npm uninstall -g ember-route-web-storage`
1. Remove the reference to the `ember-route-web-storage`
in your _other_ project's `package.json`.
1. Run an `npm prune` and `bower prune` from the root of your _other_ project's command line.