
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
maxng-nodejs
Advanced tools
A NodeJS Wrapper for MaxNG
This project provides an easy-to-use object-oriented API to access endpoints delineated at https://maxv1.docs.apiary.io/
Install from the NPM Registry
npm i --save maxng-nodejs
let MaxNg = require('maxng-nodejs')
const APIKEY = 'pk_1IkXmSWOlE4y9Inhgyd6g5f2R7'
const environment = process.env.NODE_ENV
const isProduction = (environment === 'production')
const maxdotng = new MaxNg(APIKEY, isProduction);
let response = {body:{}};
const date_time = new Date('2019-12-30')
try {
response = await maxdotng.getPickUpWindow({
pickup_datetime: date_time
});
}catch(err){
console.error(err);
}
MIT
You are welcome to contribute to this project. Just before sending us a PR, do the following below:
Firstly, clone the project
git clone https://www.github.com/stitchng/maxdotng
Then, lint the code to conform to our code style
npm run lint
Finally, add tests to the test folder to test your code and run tests locally
npm run test
See the CONTRIBUTING.md file for info
FAQs
A NodeJS wrapper for the MaxDotNG API
The npm package maxng-nodejs receives a total of 3 weekly downloads. As such, maxng-nodejs popularity was classified as not popular.
We found that maxng-nodejs 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.