Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 604 Bytes

README.md

File metadata and controls

23 lines (16 loc) · 604 Bytes

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