Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

bitstore

Package Overview
Dependencies
Maintainers
2
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bitstore - npm Package Compare versions

Comparing version 2.4.1 to 2.5.0

6

CHANGELOG.md

@@ -0,1 +1,7 @@

<a name="2.5.0"></a>
# [2.5.0](https://github.com/blockai/bitstore-client/compare/v2.5.0...v2.5.0) (2015-11-17)
<a name="2.4.1"></a>

@@ -2,0 +8,0 @@ ## [2.4.1](https://github.com/blockai/bitstore-client/compare/v2.4.1...v2.4.1) (2015-11-16)

@@ -142,2 +142,17 @@ #!/usr/bin/env node

_commander2['default'].command('keys:put <key> <value>').description('put key in key-value store').action(function (key, value) {
var client = initClient();
client.keys.put(key, value).then(success)['catch'](exit);
});
_commander2['default'].command('keys:get <key>').description('get key from key-value store').action(function (key) {
var client = initClient();
client.keys.get(key).then(success)['catch'](exit);
});
_commander2['default'].command('keys:destroy <key>').description('remove key from key-value store').action(function (key) {
var client = initClient();
client.keys.del(key).then(success)['catch'](exit);
});
_commander2['default'].parse(process.argv);

2

package.json

@@ -63,3 +63,3 @@ {

},
"version": "2.4.1",
"version": "2.5.0",
"config": {

@@ -66,0 +66,0 @@ "commitizen": {

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