
Security News
Security Community Slams MIT-linked Report Claiming AI Powers 80% of Ransomware
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.
@homeofthings/node-utils
Advanced tools
HomeOfThings - Node Utils: various utilities and common types
AsyncContext<T>: little wrapper around AsyncLocalStorage providing default value
asyncContext = new AsyncContext(defaultContext);
...
asyncContext.set(newContext)
...
currentContext = asyncContext.get();
ConfigService: singleton service based on node-config
configService = new ConfigService({ configDirectory: 'path/to/config' });
then use one of the methods provided by the ConfigService:
export declare class ConfigService {
  readonly configDirectory: string;
  readonly environment: string;
  constructor(_opts: ConfigOptions);
  getConfig(key: string): object | undefined;
  reloadConfig(): void;
  getString(key: string, defaultValue: string): string;
  getNumber(key: string, defaultValue: number): number;
  getBoolean(key: string, defaultValue: boolean): boolean;
  getObject(key: string, defaultValue: object): object;
  // resolve path relative to config-directory
  getPath(key: string, defaultValue: string): string;
  getOptionalString(key: string): string | undefined;
  getOptionalNumber(key: string): number | undefined;
  getOptionalBoolean(key: string): boolean | undefined;
  getOptionalObject(key: string): object | undefined;
  // resolve path relative to config-directory
  getOptionalPath(key: string): string | undefined;
}
reload on SIGHUP:
process.on('SIGHUP', () => ConfigService.getInstance().reloadConfig());
LruCache<T>: LRU cache
cache = new LruCache<UserSession, number>(SESSION_CACHE_SIZE);
cache.set(id, userSession); // add this to the cache and mark it as least recently used
...
cache.get(anotherId); // if it is available in the cache it will be marked as least recently used
sequentialize: run Promises in sequence
await sequentialize(item.map(() => doWork(item)));
wait: wait until a condition is true or timed out
await wait(condition); // polls until condition is true
await wait(condition, 1000); // polls until condition is true or timed out after 1000ms
WritableStrings: a Writable for writing to a string array
quoteArgs and quoteArg: quote arguments for better readability (e.g. for logging)
FAQs
HomeOfThings - Node Utils: various utilities and common types
We found that @homeofthings/node-utils demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.

Research
/Security News
Socket researchers found 10 typosquatted npm packages that auto-run on install, show fake CAPTCHAs, fingerprint by IP, and deploy a credential stealer.