Skip to content

Files

Latest commit

5c843af · Oct 2, 2023

History

History
This branch is 2819 commits behind microsoft/rushstack:main.

node-core-library

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Sep 19, 2023
Oct 2, 2023
Sep 26, 2023
Nov 17, 2020
Sep 28, 2023
Sep 28, 2023
Mar 17, 2020
Apr 9, 2022
Sep 28, 2023
Sep 30, 2020

@rushstack/node-core-library

This library provides a conservative set of "core" NodeJS utilities whose purpose is to standardize how we solve common problems across our tooling projects. In order to be considered "core", the class must meet ALL of these criteria:

  • small and self-contained (i.e. quick to install)

  • solves a ubiquitous problem (i.e. having one standardized approach is better than allowing each developer to use their favorite library)

  • broad enough applicability to justify imposing it as a dependency for nearly every NodeJS project

  • code is design reviewed, API approved, and documented

Examples of "core" functionality that meets this criteria:

  • basic file/folder manipulation
  • JSON file loader/saver/validator
  • package.json parser
  • build performance timers
  • executing shell commands

This package is NOT intended to be a dumping ground for arbitrary utilities that seem like they might be useful. Code should start somewhere else, and then graduate to node-core-library after its value has already been demonstrated. If in doubt, create your own NPM package.

Links

@rushstack/node-core-library is part of the Rush Stack family of projects.