Skip to content

A thin wrapper to handle requests to the PhraseApp API

Notifications You must be signed in to change notification settings

birkestroem/phraseapp-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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