@lando/platformsh
Version:
A Lando plugin that provides a tight integration with Platform.sh.
42 lines (24 loc) • 873 B
Markdown
[](https://travis-ci.org/platformsh/platformsh-client-js)
This is a isomorphic Javascript library for accessing the Platform.sh API.
We recommend you use the [Platform.sh CLI](https://github.com/platformsh/platformsh-cli) for most purposes.
Run `npm install platformsh-client`
```Javascript
import Client from 'platformsh-client';
const client = new Client({
api_token: /* api token if you use it with NodeJS*/,
redirect_uri: /* custom redirection uri if you use it in the browser (current uri by default)*/
});
client.getProjects().then(projects => {
const project = projects[0];
const giturl = project.getGitUrl();
});
```
Run `npm run dev`
Run `npm run build`
Run `npm test`