nprapps / app-template

The NPR visuals team's opinionated project template for client-side apps.
http://blog.apps.npr.org/2014/07/29/everything-our-app-template-does.html
MIT License
1.55k stars 194 forks source link

encapsulate simpleStorage with a small utility library #564

Closed eads closed 9 years ago

eads commented 9 years ago

E.g.

STORAGE.set('key', 'value')

On the backend:

var set = function(key, value) {
    simpleStorage.set(APP_CONFIG.PROJECT_SLUG + key, value);
}