
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.
@codification/cutwater-nullable
Advanced tools
Provides utilities for easily handling configuration, environment detection, timezone adjustments and string validation suitable for use in the browser or server-side.
Via npm:
npm install @codification/cutwater-core
Via yarn:
yarn add @codification/cutwater-core
import { Config } from '@codification/cutwater-core';
const url = Config.get('API_URL', 'https://api.example.com');
// Returns 'https://api.example.com' if there is no value for API_URL
const otherUrl = Config.getRequired('API_URL', 'API_URL is required!');
// Will throw an error (optionally with the provided message) if API_URL does not exist
Config.put('BACKUP_API_URL', 'https://api-backup.example.com');
import { Env } from '@codification/cutwater-core';
if (Env.isProd()) {
console.log('Yeah, we made it to production!');
}
if (Env.isDev()) {
console.log('Not yet I guess.');
}
import { StringUtils } from '@codification/cutwater-core';
if (StringUtils/contains('Check This', 'This')) {
console.log('Yes, it contains it.');
}
if (StringUtils.startsWith('x-forward', 'x-')) {
console.log('A custom header.');
}
if (StringUtils.endsWith('x-Forward-Cookies', 'cookies', true)) {
console.log('Case insensitivity FTW.');
}
import { TimeUnit, TZUtils } from '@codification/cutwater-core';
const oneDayInSeconds = TimeUnit.days(1).toSeconds();
const fiveMinutesInMillis = TimeUnit.minutes(5).toMillis();
console.log(TZUtils.timestamp());
// 2018-10-06 15:22:12,345 (This is UTC)
TZUtils.timezoneOffset = TimeUnit.hours(-5).toMinutes();
console.log(TZUtils.timestamp());
// 2018-10-06 10:22:12,345 (Now we get the time in Ecuador, UTC-5)
const localizedDate = TZUtils.now();
// localizedDate is the current date/time based on the timezoneOffset, Ecuador in this case.
FAQs
A library providing useful nullables.
We found that @codification/cutwater-nullable demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers 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.