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

cson

Package Overview
Dependencies
Maintainers
1
Versions
113
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cson - npm Package Compare versions

Comparing version 0.1.0 to 0.1.1

2

package.json
{
"name": "cson",
"version": "0.1.0",
"version": "0.1.1",
"description": "CoffeeScript-Object-Notation Parser. Same as JSON but for CoffeeScript objects",

@@ -5,0 +5,0 @@ "homepage": "https://github.com/balupton/cson.npm",

@@ -6,2 +6,36 @@ # CSON

## What is CSON?
Everyone knows JSON, it's the thing that looks like this:
``` javascript
{
"abc": [
"a",
"b",
"c"
],
"a": {
"b": "c"
}
}
```
But with the invention of CoffeeScript you can also write the same thing in CSON which looks like this:
``` coffeescript
{
abc: [
'a'
'b'
'c'
]
a:
b: 'c'
}
```
Which is far more leniant than JSON, nicer to write and read, and won't fail if you forget a comma.
## Installing

@@ -17,4 +51,5 @@

## Using
## Using CSON
- With Node.js in JavaScript

@@ -21,0 +56,0 @@

{
"abc": ["a", "b", "c"],
"abc": [
"a",
"b",
"c"
],
"a": {

@@ -4,0 +8,0 @@ "b": "c"

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