# csonify

> A browserify transform for turning .cson files into .json

Latest version **1.0.1** (published 2015-02-19) · ISC license · 0 weekly downloads

## Install

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

## 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-02-19 |
| First published | 2015-02-17 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | François Robichet |
| Maintainers | calvein |
| Keywords | cson, json, browserify |

## Links

- npm: https://www.npmjs.com/package/csonify
- Repository: git@github.com:Calvein/csonify
- Homepage: https://github.com/Calvein/csonify
- Issues: https://github.com/Calvein/csonify/issues
- npm.io page: https://npm.io/package/csonify

## Dependencies (2)

- [cson](https://npm.io/package/cson.md) ^2.0.0
- [through](https://npm.io/package/through.md) ^2.3.6

## 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-02-19
- 1.0.0 — 2015-02-17

## README

# A Browserify Transform for CSON

**Csonify** lets you use [CSON] files with [browserify] in the simplest way possible:

```js
var config = require('./config.cson')
```

## Setup

When creating your browserify bundle, just add this line:

```js
var csonify = require('csonify')
bundle.transform(csonify)
```

or in command line

```js
browserify -t csonify entry.js -o bundle.js
```

For convenience reason, [CSON] is in the return module:
`var csonify = require('csonify')`
`csonify.CSON.parse('things')`

[CSON]: https://github.com/bevry/cson
[browserify]: https://github.com/substack/node-browserify

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