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

confer

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

confer

Locate and parse JSON files

  • 0.1.0
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

confer

Locate and parse a JSON file.

Confer begins its search in the specified directory or process.cwd(). If a file is not found, confer then walks up the directory tree one level at a time until a file is found. If confer has not found a file after the walk, it will look for a file in $HOME.

Build Status

Installation

npm install confer

Usage

var config = require('confer')('config.json') || {};

API

confer(file, [dir])

Locate and parse a JSON file. Returns a JSON object or false if a file was not found.

  • file {String} filename or path
  • dir {String} (optional) directory to begin from; default is process.cwd()

If file is a path then confer will parse the given file directly, bypassing the locate step.

confer.locateFile(file, [dir])

Locate a file by walking up the directory tree. Returns a file path or false if a file was not found.

  • file {String} filename
  • dir {String} (optional) directory to begin from; default is process.cwd()

Tests

npm test

Keywords

FAQs

Package last updated on 03 Apr 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