New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

remote-storage

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

remote-storage

A NodeJS library to simplify remote JSON storage.

  • 0.0.3
  • unpublished
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
12
decreased by-64.71%
Maintainers
1
Weekly downloads
 
Created
Source

Remote JSON Storage over HTTPS 💿

A NodeJS package that exposes a rudimentary DaaS (database as a service) for local and cloud JSON storage.

Install

npm install remote-storage

Usage


const database = require('remote-storage')({
    key: '__PRIVATE_KEY__'
})

;(async () => {
  	
	// create
	await database.create('app/users', { name: "Elon Musk" })
	// find
	var user = await database.findOne('app/users', { name: "Elon Musk" })
	// update
	await database.update('app/users', user.id, { age: 49 })
	// remove
	await database.remove('app/users', user.id)
  
})()

Our cloud JSON storage service is in private beta. If you'd like to use, please contact us.

Author

👤 Forward Miami

  • Github: @fwd
  • Website: https://forward.miami

🤝 Contributing

Contributions, issues and feature requests are welcome!
Feel free to check issues page.

Give a ⭐️ if this project helped you!

📝 License

Copyright © 2021 Forward Miami.

MIT Open Source License

FAQs

Package last updated on 20 Mar 2021

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc