Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

grabus/angular-local-storage

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 with cookie fallback

Resources

License

Stars

Watchers

Forks

Packages

Contributors

AltStyle によって変換されたページ (->オリジナル) /