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

cd

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cd

chdir in chainer fashion + read file

  • 0.0.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
12K
increased by2.95%
Maintainers
1
Weekly downloads
 
Created
Source

cd

Extra small nodejs module for chdir in chainer fashion + read file.

Rules:

1. Reading .json file will strip comments and converte into JSON object.
2. Reading .js file is equivalent of require('dir/to/file')
3. Other files are just read.
4. Supply file as argument on last call. No chaning afterwards.
5. Module is syncro, but if you have good idea how to make it async please let me know.

Usage:

var Cd = require('cd');
var cd = new Cd('.');

// Read lol.json from current directory
var lol = cd('lol.json');

// Read wtf.js from test directory.
var wtf = cd().test('wtf.js');

// Chain as you like
var file = cd().dir1().dir2(file_in_dir2);

Keywords

FAQs

Package last updated on 28 May 2013

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