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.
keep it simple stupid date library
Please ★ this repo if you found it useful ★ ★ ★
I created kiss-date to provide a simple way to manipulate dates and timezones using simple math. The date is
stored as a tuple (array) containing a unix timestamp and timezone offset in seconds. Adjusting the timezone is as
simple as adding the unix timezone with the timezone offset dateArray[0] + dateArray[1]
.
npm install --save kiss-date
import KissDate from 'kiss-date';
const date = new KissDate(new Date(), '-06:00');
console.log(date.dateArray); // [1610926376, -21600]
date.changeTimezone('+00:00');
console.log(date.dateArray); // [1610926376, 0]
Submit an issue
Contribute a screenshot
Review the guidelines for contributing
Clay Risser © 2021
Review the changelog
A ridiculous amount of coffee ☕ ☕ ☕ was consumed in the process of building this project.
Add some fuel if you'd like to keep me going!
FAQs
keep it simple stupid date library
The npm package kiss-date receives a total of 357 weekly downloads. As such, kiss-date popularity was classified as not popular.
We found that kiss-date 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.