Security holding package that prevents malicious code from claiming the fs package name.
npx @tessl/cli install tessl/npm-fs@0.0.0The "fs" package is a security holding package published by the npm security team. This package contains no functional code and serves as a protective placeholder to prevent malicious actors from claiming the "fs" package name, which could cause confusion with Node.js's built-in fs module.
npm install fs (not recommended for use)Important: This package provides no functional imports. Any attempt to import from this package will fail.
// ⚠️ This will not work - no exports available
const fs = require("fs");// ⚠️ This will not work - no exports available
import fs from "fs";This package is not intended for use. It exists solely as a security measure.
If you need file system functionality in Node.js, use the built-in fs module:
// ✅ Use Node.js built-in fs module instead
const fs = require("fs");
// or
import fs from "fs";This package was created as a response to malicious code being published under the "fs" name. The npm security team removed the malicious package and published this placeholder to protect the ecosystem.
This security holding package intentionally provides no API surface.
// No functions, classes, or exports are available
// This package contains no code implementationInstalling this package will not provide any functionality. Users seeking file system operations should:
fs module for server-side file operations// No types are defined or exported by this packageAny attempt to use this package will result in module not found errors or undefined imports, as it contains no executable code.
For file system operations, consider:
fs: Native file system module