Skip to content

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

Notifications You must be signed in to change notification settings

headbandno2/angular-local-storage

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

angular-local-storage

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

Remember to set your app name (settings.appName) in the settings at the beginning of localStorageModule.js.

To do:

  • Make appName available to Angular for manipulation
  • Set cookies as a failback for browsers that do not support local storage

Example use:

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

About

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

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%