2 unstable releases
| 0.2.0 | Oct 11, 2024 |
|---|---|
| 0.1.0 | Oct 9, 2024 |
#1 in #builtin
105 downloads per month
Used in 2 crates
(via validate_npm_package_name)
6KB
80 lines
builtin_modules
A static list of the Node.js builtin modules from the latest Node.js version in rust.
Install
cargo add builtin_modules
Usage
use builtin_modules::BUILTIN_MODULES;
assert!(BUILTIN_MODULES.contains("path"));