Analysis updated 2026-07-08 · repo last pushed 2022-12-07
Build a desktop application that needs to save files and create folders automatically.
Create a text editor that smoothly reads and writes files across a project folder structure.
Detect file types like images, PDFs, or archives without writing custom logic.
Hash file contents to check if a file has changed since the last read.
| atom/fs-plus | atom/status-bar | atom/language-xml | |
|---|---|---|---|
| Stars | 107 | 100 | 22 |
| Language | CoffeeScript | CoffeeScript | CoffeeScript |
| Last pushed | 2022-12-07 | 2022-09-28 | 2022-09-28 |
| Maintenance | Dormant | Dormant | Dormant |
| Setup difficulty | easy | easy | easy |
| Complexity | 2/5 | 2/5 | 1/5 |
| Audience | developer | developer | developer |
Figures from each repo's GitHub metadata at analysis time.
Install via npm or CoffeeScript package manager, no external infrastructure or API keys required.
fs-plus is a helper library that makes it easier for developers to work with files and folders in their applications. It takes the standard file-handling tools built into Node.js and adds a layer of convenience on top, providing shortcuts for common tasks like finding the user's home directory, moving folders, or checking whether a file is an image. When a developer works with files in code, the built-in tools can be surprisingly clunky. Simple tasks often require multiple steps and careful error handling. This library fills in those gaps. For example, if a program needs to save a file, the library can automatically create any missing parent folders along the way. It also handles the ~ symbol, automatically expanding it to the user's home directory, and can convert long, ugly file paths into cleaner, shortened versions using that same symbol. Someone building a desktop application or a text editor would find this especially useful. The project originally came from Atom, a now-discontinued code editor, where handling files smoothly was a core part of the experience. A developer building a similar app today might use it to quickly traverse a folder structure, copy directories, or figure out if a file is a PDF, an image, or a compressed archive without writing that detection logic from scratch. The library provides both synchronous versions of these tools, which pause the program until the file operation finishes, and asynchronous versions, which let the program continue running while the file system catches up. This gives developers flexibility depending on how their application is built. It also includes a helper to hash the contents of a file, which can be useful for checking if a file has changed.
A helper library that makes working with files and folders in Node.js easier by adding convenient shortcuts for common tasks like moving directories and checking file types.
Mainly CoffeeScript. The stack also includes CoffeeScript, Node.js.
Dormant — no commits in 2+ years (last push 2022-12-07).
This project's license is not specified in the available information.
Setup difficulty is rated easy, with roughly 5min to a first successful run.
Mainly developer.
This repo across BitVibe Labs
Verify against the repo before relying on details.