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

platformsh-client

Package Overview
Dependencies
Maintainers
0
Versions
380
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

platformsh-client

Isomorphic Javascript library for accessing the Platform.sh API

  • 0.2.34
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
399
decreased by-22.52%
Maintainers
0
Weekly downloads
 
Created
Source

Build Status

Platform.sh API client

This is a isomorphic Javascript library for accessing the Platform.sh API.

We recommend you use the Platform.sh CLI for most purposes.

Install

Run npm install platformsh-client

Usage

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

Development mode

Run npm run dev

Build

Run npm run build

Test

Run npm test

FAQs

Package last updated on 25 Oct 2024

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