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

castor

Package Overview
Dependencies
Maintainers
2
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

castor - npm Package Compare versions

Comparing version 2.0.3 to 2.1.1

6

package.json
{
"name": "castor",
"version": "2.0.3",
"version": "2.1.1",
"description": "An ES7 [CAS designed](https://en.wikipedia.org/wiki/Content-addressable_storage) file storage for nodejs with a simple API and robust implementation.",

@@ -19,3 +19,3 @@ "main": "store.js",

"mout": "^1.1.0",
"nyks": "^6.9.2",
"nyks": "^6.10.3",
"send": "^0.16.2"

@@ -46,2 +46,2 @@ },

"homepage": "https://github.com/131/castor#readme"
}
}

@@ -87,4 +87,4 @@ 'use strict';

// compute file_size for progress only
for await(const file_path of readdir(this._storage_path)) {
let {size} = fs.statSync(file_path);
for(const file_path of readdir(this._storage_path)) {
let {size} = await fs.statSync(file_path);
files_size += size;

@@ -91,0 +91,0 @@ }

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