An AngularJS module that gives you access to the browsers local storage with cookie fallback
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
Go to file
Gregory Pike 64d5beded5 Merge pull request #118 from a8m/master
fix CI build falling, and broken tests
10 years ago
demo removed references to deprecated add functions. 10 years ago
test test(localStorageService): create unit test, mocking and helpers 10 years ago
.bowerrc Add Grunt to automate testing and linting. Add Karma to run tests 11 years ago
.gitattributes add git files to the repo 11 years ago
.gitignore - Adds Vim swap files to .gitignore 10 years ago
.travis.yml Setup for continuous integration 10 years ago
Gruntfile.js Updated for tests and linting 10 years ago
LICENSE Changed license to MIT 11 years ago
README.md Merge pull request #112 from kanerogers/patch-1 10 years ago
angular-local-storage.js fix(localStorageService): fix usage of 'this' keyword on closures 10 years ago
angular-local-storage.min.js fix(dist): uglify angular-local-storage 10 years ago
bower.json fix(bower): update version to 0.0.7 10 years ago
package.json fix(package): update version to 0.0.7 10 years ago

README.md

angular-local-storage

An Angular module that gives you access to the browsers local storage

Build Status

Installation:

bower install angular-local-storage

Example use:

angular.module('yourModule', ['LocalStorageModule'])
.controller('yourCtrl', [
  '$scope',
  'localStorageService',
  function($scope, localStorageService) {
    // Start fresh
    localStorageService.clearAll();
    
    // Set a key
    localStorageService.set('Favorite Sport','Ultimate Frisbee');
    
    // Delete a key
    localStorageService.delete('Favorite Sport');
}]);

/*
To set the prefix of your localStorage name, you can use the setPrefix method 
available on the localStorageServiceProvider
*/
angular.module('yourModule', ['LocalStorageModule'])
.config(['localStorageServiceProvider', function(localStorageServiceProvider){
  localStorageServiceProvider.setPrefix('newPrefix');
}]);

How to bind to a $scope variable:

Usage: localStorageService.bind(scope, key, def);

// Example
$scope.anArtist = {'firstname':'Pablo', 'lastname':'Picasso'};

// Bind to local storage service
localStorageService.bind($scope, 'anArtist', anArtist);

// get bound data:
console.log(localStorageService.get('anArtist'));

Check out the full demo and documentation at http://gregpike.net/demos/angular-local-storage/demo.html

To do:

  • Add tests
  • Expand Readme