phraseapp-client

A thin wrapper to handle requests to the Phrase API

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
phraseapp-client
1.0.123 years ago5 years agoMinified + gzip package size for phraseapp-client in KB

Readme

PhraseApp client
A thin wrapper to handle requests to the PhraseApp API.
npm version Dependency Status

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());
})();