Skip to content
This repository has been archived by the owner on Aug 28, 2023. It is now read-only.

peakon/crowdin-api

Repository files navigation

Crowdin API

API client for the Crowdin API.

Usage

var CrowdinApi = require('crowdin-api');
var api = new CrowdinApi({
  apiKey: 'abcd', // Get this from your project page
  projectName: 'project-name'
});

api.updateFile(files, ...).then(function(result) {...}).catch(function(err) {...});