
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
online-storage
Advanced tools
The library for working with online storage is similar to localStorage
npm install online-storage --save
online-storage work on all browsers.
import onlineStorage from 'online-storage'
onlineStorage.create()
{
"token": "002cac23-aa8b-4803-a94f-3888020fa0df",
"connect": "5bf365e0-1fc0-11e8-85d2-3f7a9c4f742e",
"refreshToken": "5bf365e0-1fc0-11e8-85d2-3f7a9c4f742e"
}
onlineStorage.set({
name: 'hazratgs',
age: 25,
city: 'Derbent'
skills: ['javascript', 'react+redux', 'nodejs', 'mongodb']
})
{
"status": true,
"message": "Successfully added"
}
onlineStorage.get('name')
"hazratgs"
onlineStorage.get()
{
name: 'hazratgs',
age: 25,
city: 'Derbent'
skills: ['javascript', 'react+redux', 'nodejs', 'mongodb']
}
onlineStorage.remove('name')
{
"status": true,
"message": "Successfully deleted"
}
onlineStorage.delete()
{
"status": true,
"message": "Storage deleted"
}
onlineStorage.backup()
{
"status": true
}
onlineStorage.backupList()
{
"status": true,
"data": ['Sun Mar 04 2018 19:39:42 GMT+0300 (MSK)']
}
onlineStorage.backupRestore('Sun Mar 04 2018 19:39:42 GMT+0300 (MSK)')
{
"status": true,
"message": "Successfully restored"
}
MIT
FAQs
⚡️Online implementation of localStorage
We found that online-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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.