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

@moltin/sdk

Package Overview
Dependencies
Maintainers
1
Versions
448
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@moltin/sdk

SDK for the Moltin eCommerce API

  • 2.2.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
417
decreased by-41.92%
Maintainers
1
Weekly downloads
 
Created
Source

Moltin JavaScript SDK

The Moltin Javascript SDK is a simple to use interface for the Moltin eCommerce API to help you get off the ground quickly and efficiently within client and server applications.

WikiAPI docsmoltin.com

Installation

npm install --save moltin
JavaScript
import { gateway as MoltinGateway } from 'moltin';
Node.js
const moltin = require('moltin');

Usage

To get started, instantiate a new Moltin client with your store credentials.

Note: This requires a Moltin account.

JavaScript
const Moltin = MoltinGateway({
  client_id: 'XXX'
});

Note: If you're using webpack, you'll need to add the following to your projects configuration file.

node: {
  fs: 'empty'
}
Node.js
const Moltin = moltin.gateway({
  client_id: 'XXX',
  client_secret: 'XXX',
});

You can now authenticate with the Moltin service.

Moltin.Authenticate().then((response) => {
  console.log('authenticated', response);
});

Check out the wiki to learn more about authenticating and the available endpoints.

Development

The SDK is built with ES6 modules that are bundled into Node and browser compatible files using Rollup.

If you want to roll your own bundle, or make changes to any of the modules in src, then you'll need to install the package dependencies and build the dist files.

npm install
npm run build

You can learn more about Rollup, the API and configuration here.

FAQs

Package last updated on 08 May 2017

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