An open API service indexing awesome lists of open source software.

https://github.com/birkestroem/phraseapp-client

A thin wrapper to handle requests to the PhraseApp API
https://github.com/birkestroem/phraseapp-client

internationalization nodejs phraseapp teepee translation

Last synced: 4 months ago
JSON representation

A thin wrapper to handle requests to the PhraseApp API

Awesome Lists containing this project

README

          

# PhraseApp client

A thin wrapper to handle requests to the PhraseApp API.

[![npm version](https://badge.fury.io/js/phraseapp-client.svg)](https://badge.fury.io/js/phraseapp-client)
[![Dependency Status](https://david-dm.org/birkestroem/phraseapp-client.svg)](https://david-dm.org/birkestroem/phraseapp-client)

## Examples

### List your projects

```javascript
const PhraseAppClient = require('phraseapp-client');

const phraseapp = new PhraseAppClient(
'https://api.phraseapp.com/v2',
process.env.PHRASEAPP_ACCESS_TOKEN,
);

(async () => {
console.log(await phraseapp.listProjects());
})();
```