
Research
/Security News
npm Author Qix Compromised in Major Supply Chain Attack
npm author Qix’s account was compromised, with malicious versions of popular packages like chalk-template, color-convert, and strip-ansi published.
Biblioteca NodeJs criada para facilitar a integração com a API do Mercado Livre
Melif is an SDK that helps in the integration between the developer and the Mercado Libre API
Use npm or yarn to perform the installation.
npm install melif
or
yarn add melif
First, you need to create an instance of melif with your information.
var M = require('melif')
// Fill in the required information
const Melif = new M({
api_root_url: 'https://api.mercadolibre.com',
auth_url: 'https://auth.mercadolibre.com/authorization',
oauth_url: 'https://api.mercadolibre.com/oauth/token',
client_id: 'your mercado libre client_id',
client_secret: 'your mercado libre client_secret',
});
module.exports = Melif;
Now just import your instance of Melif and use it!
const Melif = require('./Melif');
// Now you can use all the methods of melif!
var auth_url = Melif.getAuthUrl("http://localhost:3000/v1/authentication/authorize");
console.log(auth_url)
authorize(...)
getAuthUrl(...)
refreshToken(...)
getUserById(...)
getUserByNickname(...)
getUserReputationById(...)
createItem(...)
getItemIdsByUserId(...)
getItemsByIds(...)
getItemById(...)
getDescriptionById(...)
setDescriptionById(...)
setItemStatusById(...)
getOrderByResource(...)
setOrderAsDeliveredById(...)
getQuestionByResource(...)
answerQuestionById(...)
getMessagesByOrderAndSellerId(...)
sendMessageByOrder(...)
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
FAQs
Biblioteca NodeJs criada para facilitar a integração com a API do Mercado Livre
We found that melif 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.
Research
/Security News
npm author Qix’s account was compromised, with malicious versions of popular packages like chalk-template, color-convert, and strip-ansi published.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.