2.0.0 • Published 3 years ago

@chharvey/requirejson v2.0.0

Weekly downloads
132
License
MIT
Repository
github
Last release
3 years ago

requirejson

Require JSON files with a file extension other than .json.

Install

$ npm install @chharvey/requirejson

Use

Asynchronously

const {requireJSON} = require('@chharvey/requirejson');

requireJSON('./my-file.jsonld').then((my_json_object) => {
	console.log(my_json_object['@type']);
});

Synchronously

const {requireJSONSync} = require('@chharvey/requirejson');

const my_json_object = requireJSONSync('./my-file.jsonld');
console.log(my_json_object['@type']);

API

import {
	requireJSON,
	requireJSONSync,
	JSONValue,
	JSONObject,
	JSONArray,
	JSONPrimitive,
} from '@chharvey/requirejson';

const my_json_object: Promise<JSONValue> = requireJSON('./my-file.jsonld');
const my_json_object_sync: JSONValue = requireJSONSync('./my-file.jsonld');

Functions

requireJSON(filepath: string): Promise<JSONValue>

Asynchronously returns a JSON value that is the result of parsing the file contents.

Parameters:

  • filepath: the path of the file to read, relative to current working directory

Returns:

A Promise resolving to a JSON value parsed from the file contents.

requireJSONSync(filepath: string): JSONValue

Synchronously returns a JSON value that is the result of parsing the file contents.

Parameters:

  • filepath: the path of the file to read, relative to current working directory

Returns:

A JSON value parsed from the file contents.

Types

type namedefinitiondescription
JSONValueJSONObject or JSONArray or JSONPrimitiveAny valid JSON value.
JSONObject{[key: string]?: JSONValue}A general JSON object, with string keys and JSONValue values.
JSONArrayJSONValue[]A JSON array, with JSONValue entries.
JSONPrimitivestring or number or boolean or nullA JSON primitive.