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

An ES7 [CAS designed](https://en.wikipedia.org/wiki/Content-addressable_storage) file storage for nodejs with a simple API and robust implementation.

  • 2.1.6
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
5
increased by150%
Maintainers
2
Weekly downloads
 
Created
Source

Content addressable storage - castor

An ES7 CAS designed file storage for nodejs with a simple API and robust implementation.

castor drawing

Build Status Coverage Status NPM version License Code style

API

const Storage = require('castor');
  // castor internal index file path
var store = new Storage('./some/path/index.json');

  // return an *index* to write and fetch file into
var index = store.getIndex('medias');

async Index.checkEntry(file_name, file_url, file_md5)

  // download, if needed, the requested file, store it in CAS and reference it into current index
  // file_url can be an url.parse'd object
await index.checkEntry("some/storage/path/file.mp4", "http://remoteurl.com/20320930293", "[CURRENT_MD5]");

Index.get(file_name)

// retrieve a file information from current index
index.get("some/storage/path/file.mp4") 
/* retrieve {
  file_size : (an integer),
  file_path : './some/path/00/1/[FULL_MD5]',
  file_md5 : '[FULL_MD5]',
 }
*/

Index.send(req, res, next)

// expose an http/express middleware to delivers content from an existing path
server.use(index.send.bind(index)) // (req, res, next)

Advanced usage

Storage.warmup

// move all existing (and non indexed files) files to CAS design
await store.warmup();

Index.reset()

//reset a local index file_path => hash mapping (no files are deleted at this time)
index.reset();

async Storage.purge()

//remove all unlinked file (files not referenced in any index) from storage folder
await storage.purge();

References

Credits

Keywords

FAQs

Package last updated on 02 May 2024

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