Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
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 389 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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.