# metstrike-ejson

> Standalone EJSON package for NPM

Latest version **1.0.13** (published 2017-04-23) · MIT license · 0 weekly downloads

## Install

```sh
npm install metstrike-ejson
pnpm add metstrike-ejson
yarn add metstrike-ejson
bun add metstrike-ejson
```

## 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.13 |
| Published | 2017-04-23 |
| First published | 2017-04-23 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | metstrike |
| Maintainers | metstrike |

## Links

- npm: https://www.npmjs.com/package/metstrike-ejson
- Repository: https://github.com/metstrike/meteor
- Homepage: https://github.com/metstrike/meteor#readme
- Issues: https://github.com/metstrike/meteor/issues
- npm.io page: https://npm.io/package/metstrike-ejson

## Dependencies (2)

- [underscore](https://npm.io/package/underscore.md) ^1.8.3
- [metstrike-base64](https://npm.io/package/metstrike-base64.md) *

## Recent versions

- 1.0.13 (latest) — 2017-04-23

## README

# ejson
[Source code of released version](https://github.com/meteor/meteor/tree/master/packages/ejson) | [Source code of development version](https://github.com/meteor/meteor/tree/devel/packages/ejson)
***

EJSON is an extension of JSON to support more types. It supports all JSON-safe
types, as well as:

 - **Date** - JavaScript `Date`
 - **Binary** - JavaScript `Uint8Array` or the
   result of [`EJSON.newBinary`](http://docs.meteor.com/#ejson_new_binary)
 - **User-defined types** - see [`EJSON.addType`](http://docs.meteor.com/#ejson_add_type)

All EJSON serializations are also valid JSON.  For example an object with a date
and a binary buffer would be serialized in EJSON as:

    {
      "d": {"$date": 1358205756553},
      "b": {"$binary": "c3VyZS4="}
    }

For more details, see the [EJSON section](http://docs.meteor.com/#ejson) of the Meteor docs.

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