phraseapp-client
v1.0.12
Published
A thin wrapper to handle requests to the Phrase API
Downloads
32
Readme
PhraseApp client
A thin wrapper to handle requests to the PhraseApp API.
Examples
List your projects
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());
})();