Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
react-native-storage
Advanced tools
This is a local storage wrapper for both react-native(AsyncStorage) and browser(localStorage). ES6/babel is needed.
This is a local storage wrapper for both react-native(AsyncStorage) and browser(localStorage). ES6 syntax, promise for async load, fully tested with jest.
查看中文文档请点击README-CHN.md
npm install react-native-storage --save
You need to use webpack and babel to enable es6 modules for web development.
You should add the following lines to your webpack config:
// ...
externals: {
"react-native": {} // This line is required! Otherwise an error would be thrown.
},
module: {
loaders: [
// ...
{
test: /\.js?$/,
include: [
//path.join(__dirname, 'your-own-js-files'),
//path.join(__dirname, 'node_modules/some-other-lib-that-needs-babel'),
path.join(__dirname, 'node_modules/react-native-storage')
],
loader: 'babel',
query: {
cacheDirectory: true,
presets: ['es2015', 'stage-1', 'react'],
plugins: ['transform-runtime']
}
}
]
}
You don't have to configure anything(but require react native version >= 0.13).
import Storage from 'react-native-storage';
Do not use require('react-native-storage')
, which would cause error in version 0.16.
var storage = new Storage({
// maximum capacity, default 1000
size: 1000,
// expire time, default 1 day(1000 * 3600 * 24 secs)
defaultExpires: 1000 * 3600 * 24,
// cache data in the memory. default is true.
enableCache: true,
// if data was not found in storage or expired,
// the corresponding sync method will be invoked and return
// the latest data.
sync : {
// we'll talk about the details later.
}
})
// I suggest you have one(and only one) storage instance in global scope.
// for web
// window.storage = storage;
// for react native
// global.storage = storage;
// Save something with key only.
// Something more unique, and constantly being used.
// They are perminently stored unless you remove.
// Even expires, the data won't be removed. Only sync method would be invoked.
storage.save({
key: 'loginState', // Note: Do not use underscore("_") in key!
rawData: {
from: 'some other site',
userid: 'some userid',
token: 'some token'
},
// if not specified, the defaultExpires will be applied instead.
// if set to null, then it will never expires.
expires: 1000 * 3600
});
// load
storage.load({
key: 'loginState',
// autoSync(default true) means if data not found or expired,
// then invoke the corresponding sync method
autoSync: true,
// syncInBackground(default true) means if data expired,
// return the outdated data first while invoke the sync method.
// It can be set to false to always return data provided by sync method when expired.(Of course it's slower)
syncInBackground: true
}).then( ret => {
// found data goes to then()
console.log(ret.userid);
}).catch( err => {
// any exception including data not found
// goes to catch()
console.warn(err);
})
// --------------------------------------------------
// Save something with key and id. Something of the same type(key).
// There is a quota over "key-id" data(the size parameter you pass in constructor).
// By default the 1001th data will overwrite the 1st data.
// If you then load the 1st data, a catch(data not found) or sync will be invoked.
var userA = {
name: 'A',
age: 20,
tags: [
'geek',
'nerd',
'otaku'
]
};
storage.save({
key: 'user', // Note: Do not use underscore("_") in key!
id: '1001', // Note: Do not use underscore("_") in id!
rawData: userA,
expires: 1000 * 60
});
// load
storage.load({
key: 'user'
id: '1001'
}).then( ret => {
// found data goes to then()
console.log(ret.userid);
}).catch( err => {
// any exception including data not found
// goes to catch()
console.warn(err);
})
// --------------------------------------------------
//remove single record
storage.remove({
key: 'lastPage'
});
storage.remove({
key: 'user'
id: '1001'
});
//!! clear map and remove all key-id data (but keep the key-only data)
storage.clearMap();
You can pass sync methods as one object parameter to the storage constructor, but also you can add it any time.
storage.sync = {
// The name of the sync method must be the same of the data's key
// And the passed params will be an all-in-one object.
// You can use promise here.
// Or plain callback function with resolve/reject, like:
user(params){
let { id, resolve, reject } = params;
fetch('user/', {
method: 'GET',
body: 'id=' + id
}).then( response => {
return response.json();
}).then( json => {
// console.log(json);
if(json && json.user){
storage.save({
key: 'user',
id,
rawData: json.user
});
// Call resolve() when succeed
resolve && resolve(json.user);
}
else{
// Call reject() when failed
reject && reject('data parse error');
}
}).catch( err => {
console.warn(err);
reject && reject(err);
});
}
}
With this example sync method, when you invoke:
storage.load({
key: 'user',
id: '1002'
}).then(...)
If there is no user 1002 stored currently, then storage.sync.user would be invoked to fetch remote data and returned.
// Load batch data with the same parameters as storage.load, but in an array.
// It will invoke sync methods on demand,
// and finally return them all in an ordered array.
storage.getBatchData([
{ key: 'loginState' },
{ key: 'checkPoint', syncInBackground: false },
{ key: 'balance' },
{ key: 'user', id: '1009' }
])
.then( results => {
results.forEach( result => {
console.log(result);
})
})
// Load batch data with one key and an array of ids.
storage.getBatchDataWithIds({
key: 'user',
ids: ['1001', '1002', '1003']
})
.then( ... )
There is a notable difference between the two methods except the arguments. getBatchData will invoke different sync methods(since the keys may be different) one by one when corresponding data is missing. However, getBatchDataWithIds will collect missing data, push their ids to an array, then pass the array to the corresponding sync method(to avoid too many requests) once, so you need to implement array query on server end and handle the parameters of sync method properly(cause the id parameter can be a single string or an array of strings).
####You are welcome to ask any question in the issues page.
0.0.15
FAQs
A local storage wrapper for both react-native(AsyncStorage) and browser(localStorage).
The npm package react-native-storage receives a total of 5,852 weekly downloads. As such, react-native-storage popularity was classified as popular.
We found that react-native-storage demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.