# node-po2json

> Node script to transform .po files to .json files easily

Latest version **1.0.0** (published 2018-03-09) · MIT license · 0 weekly downloads

## Install

```sh
npm install node-po2json
pnpm add node-po2json
yarn add node-po2json
bun add node-po2json
```

Provides the command `node-po2json`.

## 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.0 |
| Published | 2018-03-09 |
| First published | 2018-03-09 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Unpacked size | 32.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Łukasz Piłatowski |
| Maintainers | teonite |
| Keywords | json, po, node, converter, po2json |

## Links

- npm: https://www.npmjs.com/package/node-po2json
- Repository: https://github.com/teonite/node-po2json
- Homepage: https://github.com/teonite/node-po2json#readme
- Issues: https://github.com/teonite/node-po2json/issues
- npm.io page: https://npm.io/package/node-po2json

## Dependencies (2)

- [po2json](https://npm.io/package/po2json.md) 0.4.5
- [commander](https://npm.io/package/commander.md) 2.12.2

## 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.0 (latest) — 2018-03-09

## README

# node-po2json

Simple tool for converting `.po` files to `.json` files

```
Usage: node-po2json [options] <source> <target>


  Options:

    -V, --version    output the version number
    -r, --recursive  Recursively convert all files in directory
    -h, --help       output usage information
```

### Installation
```
npm install --save node-po2json
```

### Usage
```
node-po2json source.po target.json
```
```
node-po2json -r sourceDir targetDir
```

or in `package.json`
```
{
    // ...
    "scripts": {
        //...
        "convert:po": "node-po2json -r sourceDir targetDir"
    },
    // ...
}
```

### License

MIT

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