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
- Host: GitHub
- URL: https://github.com/birkestroem/phraseapp-client
- Owner: birkestroem
- Created: 2018-09-03T12:40:39.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T16:12:17.000Z (over 3 years ago)
- Last Synced: 2025-10-02T04:51:33.879Z (9 months ago)
- Topics: internationalization, nodejs, phraseapp, teepee, translation
- Language: JavaScript
- Homepage:
- Size: 1.22 MB
- Stars: 3
- Watchers: 0
- Forks: 1
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PhraseApp client
A thin wrapper to handle requests to the PhraseApp API.
[](https://badge.fury.io/js/phraseapp-client)
[](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());
})();
```