Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
@ntegral/lulu
Advanced tools
The client for Lulu Print API that allows you to use Lulu as a production and fulfillment network. The client provides a wrapper around the Lulu Print API restful API.
The client for Lulu Print API that allows you to use Lulu as a production and fulfillment network. The client provides a wrapper around the Lulu Print API restful API.
npm install --save @ntegral/lulu
The simplest way to use @ntegral/lulu
is as follows:
import { LuluService } from "@ntegral/lulu";
let ls = new LuluService({
client_key: '5ec56f60-3df5-484a-86a4-5fff05f724bb',
client_secret: 'b1050b59-61e6-4053-9731-669cd1173553', //3
environment: 'development',
});
//list the print shipping options method //
ls.shippingOptions.list({ page: 1, page_size: 100, iso_country_code: 'US' }).then((result) => {
console.log('resulting shipping options', result);
}).catch((err) => {
console.log('error occurred', err);
});
I would greatly appreciate any contributions to make this project better. Please make sure to follow the below guidelines before getting your hands dirty.
git checkout -b my-branch
)Distributed under the MIT License. See LICENSE
for more information.
Copyright © 2019 Ntegral Inc.
FAQs
Lulu Print API Client
The npm package @ntegral/lulu receives a total of 4 weekly downloads. As such, @ntegral/lulu popularity was classified as not popular.
We found that @ntegral/lulu demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
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.