
Security News
Official Go SDK for MCP in Development, Stable Release Expected in August
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
File system module for Hexo.
$ npm install hexo-fs --save
const fs = require('hexo-fs');
Some methods in the original fs module are not listed below, but they're available in hexo-fs.
Test whether or not the given path
exists by checking with the file system.
Synchronous version of fs.exists
.
Creates a directory and its parent directories if they does not exist.
Synchronous version of fs.mkdirs
.
Writes data to a file.
Option | Description | Default |
---|---|---|
encoding | File encoding | utf8 |
mode | Mode | 438 (0666 in octal) |
flag | Flag | w |
Synchronous version of fs.writeFile
.
Appends data to a file.
Option | Description | Default |
---|---|---|
encoding | File encoding | utf8 |
mode | Mode | 438 (0666 in octal) |
flag | Flag | w |
Synchronous version of fs.appendFile
.
Copies a file from src
to dest
.
Copies a directory from src
to dest
. It returns an array of copied files.
Option | Description | Default |
---|---|---|
ignoreHidden | Ignore hidden files | true |
ignorePattern | Ignore files which pass the regular expression |
Lists files in a directory.
Option | Description | Default |
---|---|---|
ignoreHidden | Ignore hidden files | true |
ignorePattern | Ignore files which pass the regular expression |
Synchronous version of fs.listDir
.
Reads the entire contents of a file.
Option | Description | Default |
---|---|---|
encoding | File encoding | utf8 |
flag | Flag | r |
escape | Escape UTF BOM and line ending in the content | true |
Synchronous version of fs.readFile
.
Deletes all files in a directory. It returns an array of deleted files.
Option | Description | Default |
---|---|---|
ignoreHidden | Ignore hidden files | true |
ignorePattern | Ignore files which pass the regular expression | |
exclude | Ignore files in the array |
Synchronous version of fs.emptyDir
.
Removes a directory and all files in it.
Synchronous version of fs.rmdir
.
Watches changes of a file or a directory.
See Chokidar API for more info.
Ensures the given path is available to use or appends a number to the path.
Synchronous version of fs.ensurePath
.
Creates the parent directories if they does not exist and returns a writable stream.
Synchronous version of fs.ensureWriteStream
.
MIT
FAQs
File system module for Hexo.
The npm package ahexo-fs receives a total of 0 weekly downloads. As such, ahexo-fs popularity was classified as not popular.
We found that ahexo-fs demonstrated a not healthy version release cadence and project activity because the last version was released 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
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
Security News
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.