Skip to content

martinoss/angular-local-storage

This branch is 293 commits behind grevory/angular-local-storage:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Feb 20, 2014
8155c3a · Feb 20, 2014
Feb 14, 2014
Feb 20, 2014
Sep 23, 2013
Sep 23, 2013
Sep 23, 2013
Feb 14, 2014
Feb 20, 2014
Sep 23, 2013
Feb 14, 2014
Feb 20, 2014
Feb 20, 2014
Feb 14, 2014
Feb 14, 2014

Repository files navigation

angular-local-storage

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

Build Status

Example use:

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

/*
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');
}]);

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

To do:

  • Add tests
  • Expand Readme

About

An AngularJS module that gives you access to the browsers local storage (without cookie fallback, intended for phonegap projects)

Resources

License

Stars

Watchers

Forks

Packages

No packages published