Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@moltin/sdk
Advanced tools
A simple to use API interface to help get you off the ground quickly and efficiently with your Moltin JavaScript apps.
š Wiki ā š API docs ā š moltin.com
Install the package from npm and import in your project.
npm install --save @moltin/sdk
// ES6 modules
import { gateway as MoltinGateway } from '@moltin/sdk';
// CommonJS modules
const moltin = require('@moltin/sdk');
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'
});
// Node.js
const Moltin = moltin.gateway({
client_id: 'XXX',
client_secret: 'XXX',
});
Note: If you're using webpack, you'll need to add the following to your projects configuration file.
node: {
fs: 'empty'
}
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.
We love community contributions. Here's a quick guide if you want to submit a pull request:
Note: Commits should adhere to the Angular commit conventions.
The SDK is built with ES6 modules that are bundled 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 the Rollup API and configuration here.
FAQs
SDK for the Moltin eCommerce API
The npm package @moltin/sdk receives a total of 307 weekly downloads. As such, @moltin/sdk popularity was classified as not popular.
We found that @moltin/sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago.Ā It has 0 open source maintainers collaborating on the project.
Did you know?
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.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.