# parsony

> API Engine for Parsony Framework.

Latest version **1.1.9** (published 2026-01-10) · MIT license · 0 weekly downloads

## Install

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

## Health

**Score 45/100 (D)** — status: stable.

Positive: no vulnerabilities.

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

## Facts

| | |
|---|---|
| Version | 1.1.9 |
| Published | 2026-01-10 |
| First published | 2018-07-07 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 20 |
| Unpacked size | 73.4 KB |
| Known vulnerabilities | 0 (+29 in 6 direct dependencies) |
| Install scripts | no |
| Author | Eric Phelan |
| Maintainers | epcphelan |
| Keywords | JSON-RPC, API, Rapid Development |

## Links

- npm: https://www.npmjs.com/package/parsony
- npm.io page: https://npm.io/package/parsony

## Dependencies (20)

- [chalk](https://npm.io/package/chalk.md) ^2.4.1
- [clear](https://npm.io/package/clear.md) ^0.1.0
- [mysql](https://npm.io/package/mysql.md) ^2.15.0
- [redis](https://npm.io/package/redis.md) ^2.4.2
- [figlet](https://npm.io/package/figlet.md) ^1.2.0
- [mysql2](https://npm.io/package/mysql2.md) ^1.5.3
- [twilio](https://npm.io/package/twilio.md) ^3.17.4
- [express](https://npm.io/package/express.md) ^4.13.4
- [request](https://npm.io/package/request.md) ^2.87.0
- [winston](https://npm.io/package/winston.md) ^2.4.3
- [node-cron](https://npm.io/package/node-cron.md) ^1.2.1
- [sequelize](https://npm.io/package/sequelize.md) ^4.38.0
- [handlebars](https://npm.io/package/handlebars.md) ^4.0.11
- [nodemailer](https://npm.io/package/nodemailer.md) ^4.6.7
- [superagent](https://npm.io/package/superagent.md) ^3.8.3
- [body-parser](https://npm.io/package/body-parser.md) ^1.18.3
- [compression](https://npm.io/package/compression.md) ^1.7.4
- [sequelize-cli](https://npm.io/package/sequelize-cli.md) ^4.0.0
- [express-winston](https://npm.io/package/express-winston.md) ^2.5.1
- [continuation-local-storage](https://npm.io/package/continuation-local-storage.md) ^3.1.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.1.9 (latest) — 2026-01-10
- 2.0.3 — 2026-01-10
- 2.0.2 — 2025-03-03
- 2.0.1 — 2025-03-02
- 1.2.1 — 2025-02-27
- 1.2.0 — 2025-02-27
- 1.1.8 — 2025-01-27
- 1.1.7 — 2025-01-27
- 1.1.6 — 2025-01-24
- 1.1.5 — 2025-01-22
- 1.1.4 — 2024-05-10
- 1.1.3 — 2022-06-16
- 1.1.2 — 2022-06-09
- 1.1.1 — 2020-11-04
- 1.1.0 — 2020-11-04
- … 9 more at https://npm.io/package/parsony/versions

## README

#parsony
## An API engine for the Parsony Rapid Development Framework.

Parsony helps develops quickly develop services that
expose both JSON/RPC and RESTful API Endpoints.

1. Self-documenting with searchable API documentation.
2. Provides tiered, multi-layered request validation and authorization.
3. SHA256 encrypted request Signing.
4. Interface and Handler based endpoint definition and implementation.
4. Built-in support for:
    * Scheduled processes using cron.
    * Transactional emails
    * SMS via Twilio

Parsony Framework also includes a CLI Tool and Web App Starter Kit including React/Redux along with Semantic UI.

### Installation
```
$ npm install --save parsony
```

### Usage
```js
const path = require('path');

global.base = __dirname + path.sep;
global.parsony = require('parsony');


const settings = {
  files:{
    configs:      path.join(__dirname, 'config.json'),
    _404:         path.join(__dirname, 'static','404.html')
  },
  directories:{
    models:       path.join(__dirname, 'models'),
    services:     path.join(__dirname, 'services'),
    scheduled:    path.join(__dirname, 'scheduled'),
    www:          path.join(__dirname, 'static'),
    templates:    path.join(__dirname, 'templates')
  }
};

try{
  parsony.init(settings);
  parsony.start()
    .then(app =>{})
    .catch(e => {
      console.error(e.message);
      process.exit();
    });
}
catch(e){
  console.error(e.message);
  process.exit();
}
```

### Documentation
Documentation on the use of Parsony-Core can be found at [Parsony WebServices](https://github.com/epcphelan/parsony-services-starter)

## License
### The MIT License

Copyright (c) 2010-2018 Google, Inc. http://angularjs.org

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.

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