
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.
node-file-attributes
Advanced tools
A Node.js native addon for managing file attributes on Windows, such as hidden, system, read-only, archive, compression, and indexing.
File Attributes Manager is a Node.js native addon built with C++ for managing file attributes on Windows. It provides a simple interface to set and query various file attributes like hidden, system, read-only, archive, compression, indexing, and more. This addon leverages Windows APIs to interact with file attributes at the OS level, offering more control and precision than what is typically available in standard Node.js modules.
hide, show)system, nosystem)readonly, writable)archive, noarchive)temporary, notemporary)compress, nocompress)not_indexed, indexed)e.g., hide,readonly)Before installing the package, make sure you have Node.js and npm installed on your machine.
To install the package, run the following command:
npm install node-file-attributes
Note: This module works only on Windows platforms.
Once installed, you can start using the module by importing it into your project. Below are some common examples of how to use the module.
const {
setFileAttributes,
getFileAttributes,
} = require("node-file-attributes");
You can use the setFileAttributes() function to set various attributes on a file or folder. The function supports multiple attributes at once.
const filePath = "path/to/your/file.txt";
// Hide and set the file as read-only
setFileAttributes(filePath, "hide,readonly")
.then(() => console.log("Attributes set successfully"))
.catch((err) => console.error("Error:", err));
To query the current attributes of a file, use the getFileAttributes() function. It returns a JSON object showing the status of different attributes.
getFileAttributes(filePath)
.then((attributes) => console.log("File attributes:", attributes))
.catch((err) => console.error("Error querying file attributes:", err));
The response will be a JSON object like this:
{
"hidden": true,
"system": false,
"readonly": true,
"archive": true,
"temporary": false,
"not_indexed": false
}
You can set the following modes using the setFileAttributes() function:
| Mode | Description |
|---|---|
hide | Marks the file as hidden |
show | Makes the file visible (removes hidden flag) |
system | Marks the file as a system file |
nosystem | Removes the system file flag |
readonly | Sets the file as read-only |
writable | Removes the read-only flag |
archive | Marks the file as archived |
noarchive | Removes the archive flag |
temporary | Marks the file as temporary |
notemporary | Removes the temporary flag |
compress | Enables NTFS compression |
nocompress | Disables NTFS compression |
not_indexed | Prevents the file from being indexed |
indexed | Allows the file to be indexed |
normal | Resets all attributes (makes the file normal) |
You can also pass multiple modes as a comma-separated list, e.g., "hide,readonly".
Here are some more examples of using the module to set different attributes:
const filePath = "test-file.txt";
/* Set the file as hidden */
setFileAttributes(filePath, "hide")
.then(() => console.log("File is now hidden"))
.catch((err) => console.error("Error:", err));
/* Remove the hidden attribute */
setFileAttributes(filePath, "show")
.then(() => console.log("File is now visible"))
.catch((err) => console.error("Error:", err));
/* Set the file as read-only */
setFileAttributes(filePath, "readonly")
.then(() => console.log("File is now read-only"))
.catch((err) => console.error("Error:", err));
/* Remove the read-only attribute */
setFileAttributes(filePath, "writable")
.then(() => console.log("File is now writable"))
.catch((err) => console.error("Error:", err));
/* Query current file attributes */
getFileAttributes(filePath)
.then((attributes) => console.log("File attributes:", attributes))
.catch((err) => console.error("Error:", err));
If you want to build the addon from the source code, you can clone the repository and run the following commands:
# Install dependencies
npm install
# Build the addon
npm run build
This will compile the C++ code and generate the necessary bindings for Node.js.
Contributions are welcome! If you encounter any issues, feel free to create a GitHub issue or submit a pull request. Make sure to follow the coding standards and best practices when contributing.
This project is licensed under the MIT License - see the LICENSE file for details.
FAQs
A Node.js native addon for managing file attributes on Windows, such as hidden, system, read-only, archive, compression, and indexing.
We found that node-file-attributes 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.