Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mirek/node-extjson
Extended JSON
https://github.com/mirek/node-extjson
Last synced: about 1 month ago
JSON representation
Extended JSON
- Host: GitHub
- URL: https://github.com/mirek/node-extjson
- Owner: mirek
- License: mit
- Created: 2014-07-08T17:54:50.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-12-08T15:10:29.000Z (about 10 years ago)
- Last Synced: 2024-10-31T07:21:23.466Z (about 2 months ago)
- Language: CoffeeScript
- Size: 148 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Summary
Extended JSON is a JSON object where special values are encoded as plain JSON objects.
This library currently supports 2 forms:
* default - Extended JSON is supported as described in http://docs.mongodb.org/manual/reference/mongodb-extended-json
* string-friendly - with additional encodings to support convertion to/from string only values, like HTML forms:
* undefined <-> { $undefined: 'true' }
* boolean <-> { $boolean: 'true|false' }
* number <-> { $number: '123[.45]' }
* function <-> { $code: 'function (...) { ... }' } (this encoding is not symmetric, will be decoded as `bson.Code`)TODO - add convertion table
Supported convertions:
BSON LongNumber
BSON Code
BSON DBRef
BSON MinKey
BSON MaxKeyundefined
boolean
number
function## Installation
npm install extjson --save
## Usage
TODO: update usage
extjson = require 'extjson'
console.log { foo: 1, bar: 2.3, yes: true, no: false, re: /hello/i, f: ( (a) -> console.log(a) ), del: undefined }## License
The MIT License (MIT)
Copyright (c) 2014 Mirek Rusin http://github.com/mirek
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.