Globalization Pipeline Client for JavaScript
This is the JavaScript SDK for the Globalization Pipeline IBM Cloud service. The Globalization Pipeline service makes it easy for you to provide your global customers with IBM Cloud applications translated into the languages in which they work. This SDK currently supports:
- Node.js 8+
- Web Browsers via Browserify
News
4.0.0
getClient()
has been removed. Instead, useconnect()
which returns aPromise
to a Client object.- The CLI is now in a separate package/repo. See https://github.com/IBM-Cloud/gp-js-cli for news and usage.
Sample
For a working IBM Cloud application sample, see gp-nodejs-sample.
Quickstart
-
You should familiarize yourself with the service itself. A good place to begin is by reading the Quick Start Guide and the official Getting Started with IBM Globalization documentation. The documentation explains how to find the service on IBM Cloud, create a new service instance, create a new bundle, and access the translated messages.
-
Next, add
g11n-pipeline
to your project, as well ascfenv
andoptional
.npm install --save g11n-pipeline cfenv optional
-
Load the client object as follows (using cfenv ).
var optional = ;var appEnv = ;var gpClient = await ;
-
For local testing, create a
local-credentials.json
file with the credentials as given in the bound service:{ "credentials": { "url": "https://…", "userId": "…", "password": "……", "instanceId": "………" } }
Using
To fetch the strings for a bundle named "hello", first create a bundle accessor:
const mybundle = gpClient;
Then, call the getStrings
function:
const resourceStrings = await mybundle; consoledirresourceStrings;
This code snippet will output the translated strings such as the following:
hello: '¡Hola!' goodbye: '¡Adiós!' …
Translation Requests
To create a Translation request:
const tr = await gpClient ; console; console;
To then check on the status of that request:
const status = await gpClient ; console;
Async
Note that all calls that are async (or take a callback) are asynchronous. For example, the following code:
var bundle = client;bundle;bundle;
…will fail, because the bundle someBundle
hasn’t been create
d by the time the
uploadStrings
call is made. Instead, make sure create
is called before uploadStrings
:
var bundle = client;await bundle;await bundle;
Testing
See TESTING.md
Browserify
The gp-js-client can be used in a web browser via browserify.
You can call the g11n-pipeline API just as from Node.js:
// mycode.jsconst gp = ;gp;
And then, package up the code for the browser:
npm i --save g11n-pipeline
npm i -g browserify
browserify mycode.js > bundle.js
Finally, include the bundle in your HTML:
API
See API.md for more details.
CLI
You can use the GP CLI to perform some operations from the commandline. See https://github.com/IBM-Cloud/gp-js-cli for more details.
Community
- View or file GitHub Issues
- Connect with the open source community on developerWorks Open
Contributing
See CONTRIBUTING.md.
License
Apache 2.0. See LICENSE.txt
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.