
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@suporka/storage
Advanced tools
To operate storage simply!
storage 管理工具
<script src="https://unpkg.com/@suporka/storage@1.0.0/lib/storage.umd.js"></script>
<script>
const app = new storage({
type: 'localStorage',
encrypt: 'localStorage'
})
app.set('name', 'suporka')
app.get('name') // suporka
app.remove('name') // remove a key
app.clear() // clear all
// crypto
storage.incry('text', 'key') // HwABHw==
// decrypto
storage.decyt('HwABHw==', 'key') // text
</script>
npm i @suporka/storage --save
import storage, { incry, decyt } from '@suporka/storage'
const app = new storage({
type: 'localStorage',
encrypt: 'localStorage'
})
app.set('name', 'suporka')
app.get('name') // suporka
app.remove('name') // remove a key
app.clear() // clear all
// crypto
incry('text', 'key') // HwABHw==
// decrypto
decyt('HwABHw==', 'key') // text
If you have some question or advise, you can send me a E-mail,or create a issue.
FAQs
storage 管理工具
We found that @suporka/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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.