Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
pinkie-promise
Advanced tools
The pinkie-promise npm package is a lightweight Promise implementation for environments that do not have a native Promise support. It uses the 'pinkie' package as its core to provide a minimal Promise polyfill.
Promise creation and usage
This feature allows users to create new promises and handle their resolution or rejection. The code sample demonstrates how to create a new promise and use 'then' and 'catch' methods to handle its outcome.
const pinkiePromise = require('pinkie-promise');
const promise = new pinkiePromise(function(resolve, reject) {
// Asynchronous operation here
if (/* operation successful */) {
resolve('Success!');
} else {
reject('Failure!');
}
});
promise.then(function(value) {
console.log(value); // 'Success!'
}).catch(function(reason) {
console.log(reason); // 'Failure!'
});
Chaining promises
This feature demonstrates how promises can be chained to perform a sequence of asynchronous operations where each step waits for the previous one to complete.
const pinkiePromise = require('pinkie-promise');
pinkiePromise.resolve(1)
.then(function(value) {
return value + 1;
})
.then(function(value) {
return value + 1;
})
.then(function(value) {
console.log(value); // 3
});
Bluebird is a full-featured Promise library with a focus on innovative features and performance. It is significantly larger and more feature-rich than pinkie-promise, offering utilities like Promise.map, .spread, and .finally, as well as advanced features like cancellation.
Q is one of the earliest Promise libraries for JavaScript. It provides a robust set of Promise-related tools but is heavier compared to pinkie-promise. It includes features like long stack traces and custom methods for handling collections of promises.
ES6-Promise is a polyfill for the ES6 Promise specification. It aims to provide a close approximation to the native implementation of Promises in environments that lack such support. It is more widely used than pinkie-promise and has similar functionality but with a larger footprint.
ES2015 Promise ponyfill
Module exports global Promise object (if available) or pinkie
Promise polyfill.
$ npm install --save pinkie-promise
var Promise = require('pinkie-promise');
new Promise(function (resolve) { resolve('unicorns'); });
//=> Promise { 'unicorns' }
MIT © Vsevolod Strukchinsky
FAQs
ES2015 Promise ponyfill
The npm package pinkie-promise receives a total of 11,097,114 weekly downloads. As such, pinkie-promise popularity was classified as popular.
We found that pinkie-promise 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.