Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@crowdin/crowdin-api-client

Package Overview
Dependencies
Maintainers
5
Versions
122
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@crowdin/crowdin-api-client

JavaScript library for Crowdin API v2.

  • 1.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
41K
decreased by-2.54%
Maintainers
5
Weekly downloads
 
Created
Source

Crowdin JavaScript client

The Crowdin JavaScript client is a lightweight interface to the Crowdin API v2 that works in any JavaScript environment, including web browsers, workers in web browsers, extensions in web browsers or desktop applications, Node.js etc. It provides common services for making API requests.

For more about Crowdin API v2 see Crowdin API v2 documentation.

npm collaborators GitHub issues License

Build Status

Azure CI (Linux)Azure CI (Windows)Azure CI (MacOS)
Build StatusBuild StatusBuild Status
Azure DevOps tests (branch)Azure DevOps tests (branch)Azure DevOps tests (branch)
Azure DevOps coverage (branch)Azure DevOps coverage (branch)Azure DevOps coverage (branch)

Table of Contents

Dependencies

  • Axios 0.19

Installation

npm i @crowdin/crowdin-api-client

Quick Start

Typescript
import crowdin, { Credentials } from 'crowdin-api-client';

// credentials
const credentials: Credentials = {
  token: 'testToken',
  organization: 'organizationName'
};

// initialization of crowdin client
const { projectsGroupsApi } = new crowdin(credentials);

// get project list
const projects = await projectsGroupsApi.listProjects();

Or specific API instances:

import { Credentials, ProjectsGroups } from 'crowdin-api-client';

// credentials
const credentials: Credentials = {
  token: 'testToken',
  organization: 'organizationName'
};

// initialization of ProjectsGroups
const projectsGroupsApi = new ProjectsGroups(credentials);

// get project list
const projects = await projectsGroupsApi.listProjects();
Javascript
import crowdin from 'crowdin-api-client';

// initialization of crowdin client
const { projectsGroupsApi } = new crowdin({
  token: 'testToken',
  organization: 'organizationName'
});

// get project list
const projects = await projectsGroupsApi.listProjects();

Or specific API instances:

import { ProjectsGroups } from 'crowdin-api-client';

// initialization of ProjectsGroups
const projectsGroupsApi = new ProjectsGroups({
  token: 'testToken',
  organization: 'organizationName'
});

// get project list
const projects = await projectsGroupsApi.listProjects();

List of projects with Fetch API

In addition if you use client in non-Node.js environment you might have a troubles with http calls. This client uses axios which internally uses http and https Node modules. So there is an option to use http client based on Fetch API.

import { ProjectsGroups, HttpClientType } from 'crowdin-api-client';

const projectsGroupsApi = new ProjectsGroups(credentials, {
  httpClientType: HttpClientType.FETCH
});

const projects = await projectsGroupsApi.listProjects();

Or even pass your own http client as httpClient property which should implement HttpClient interface.

Contribution

We are happy to accept contributions to the Crowdin JavaScript client. To contribute please do the following:

  1. Fork the repository on GitHub.
  2. Decide which code you want to submit. Commit your changes and push to the new branch.
  3. Ensure that your code adheres to standard conventions, as used in the rest of the library.
  4. Ensure that there are unit tests for your code.
  5. Submit a pull request with your patch on Github.

Seeking Assistance

If you find any problems or would like to suggest a feature, please feel free to file an issue on Github at Issues Page.

If you've found an error in these samples, please contact our Support Team.

License

Copyright © 2019 Crowdin

The Crowdin JavaScript client is licensed under the MIT License. 
See the LICENSE.md file distributed with this work for additional 
information regarding copyright ownership.

Keywords

FAQs

Package last updated on 03 Oct 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc