# jsonloader

> The fastest and easiest way to read json files

Latest version **1.0.1** (published 2015-05-16) · ISC license · 0 weekly downloads

## Install

```sh
npm install jsonloader
pnpm add jsonloader
yarn add jsonloader
bun add jsonloader
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2015-05-16 |
| First published | 2015-05-04 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | David Tesler |
| Maintainers | dtesler |
| Keywords | json, config, loader |

## Links

- npm: https://www.npmjs.com/package/jsonloader
- Repository: https://github.com/dtesler/node-jsonloader
- Issues: https://github.com/dtesler/node-jsonloader/issues
- npm.io page: https://npm.io/package/jsonloader

## Alternatives

- [@mapbox/jsonlint-lines-primitives](https://npm.io/package/@mapbox/jsonlint-lines-primitives.md) — 5.3M weekly downloads
- [reftools](https://npm.io/package/reftools.md) — 3.5M weekly downloads
- [@hey-api/openapi-ts](https://npm.io/package/@hey-api/openapi-ts.md) — 3.5M weekly downloads
- [@mapbox/geojson-rewind](https://npm.io/package/@mapbox/geojson-rewind.md) — 2.4M weekly downloads
- [turbo-stream](https://npm.io/package/turbo-stream.md) — 1.7M weekly downloads

## Recent versions

- 1.0.1 (latest) — 2015-05-16
- 1.0.0 — 2015-05-04

## README

# jsonloader

###Installation

Simply:

    npm install --save jsonloader

###Usage

        var jsonloader = require('jsonloader');

jsonloader is object oriented, and it's extremely simple

Say I have a file *test.json*, containing the following

        {
            "test": "Hello World"
        }
        
To access it with jsonloader, all I simply have to do is:

        var file = new jsonloader('test.json');
        
        console.log(file.test); //=> "Hello World"
        
It's that simple.

---
_Source: https://npm.io/package/jsonloader · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
