
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
easy-file-system
Advanced tools
A file system explorer and a rubbish bin.
The file explorer can be populated with file and directory paths. It takes handlers for opening files, moving and removing entries and so on.
There is now support for JSX in the form of Juxtapose. What this means is that Easy will now help you with the architecture of your large application. So although Easy elements will continue to work standalone, their use with Juxtapose is recommended.
You can install Easy File System with npm:
npm install easy-file-system
You can also clone the repository with Git...
git clone https://github.com/djalbat/easy-file-system.git
...and then install the dependencies with npm from within the project's topmost directory:
npm install
There is a small development server that can be run from within the project's directory with the following command:
npm start
The example will then be available at the following URL:
The source for the example can be found in the src/example.js file and correspondingsrc/example folder. You are encouraged to try the example whilst reading what follows. You can rebuild it on the fly with the following command:
npm run watch-debug
The development server will reload the page whenever you make changes.
One last thing to bear in mind is that this package is included by way of a relative rather than a package import. If you are importing it into your own application, however, you should use the standard package import.
When created, the Explorer and RubbishBin elements can be passed optional handlers:
import { Explorer, RubbishBin } from "easy-file-system";
const explorer =
<Explorer onCustomMove={moveCustomHandler} onOpen={openCustomHandler} />,
rubbishBin =
<RubbishBin onCustmRemove={removeCustomHandler} />
;
function moveCustomHandler(event, element, pathMaps, done) {
...
done();
}
function removeCustomHandler(event, element, pathMaps, done) {
...
done();
}
function openCustomHandler(event, element, filePath) {
...
}
You can add file or empty directory paths:
explorer.addDirectoryPath("Explorer/Directory");
explorer.addFilePath("Explorer/Directory/First file.fls");
explorer.addFilePath("Explorer/Directory/Second file.fls");
The addDirectoryPath() method has a second, optional collapsed argument. The default is false. The explorer will add the necessary parent directories for you whenever you add a file or directory. If you try to add a file or directory more than once, nothing will happen.
You can also remove files and non-empty directories programmatically:
explorer.removeFilePath("Explorer/Directory/Second file.fls");
explorer.removeDirectoryPath("Explorer/Directory");
If you try to remove a file or directory more than once, nothing happens.
To open a file, so to speak, double-click on the file name. When this happens the requisite handlers will be called with the file's path.
function openCustomHandler(event, element, filePath) {
console.log(`Open: '${filePath}'.`)
}
Note that double-clicking on a directory name on the other hand toggle's the entry's collapsed state. Also note that no callback is passed.
Both file and directory entries can be selected by clicking on the entry's icon. A handler can be set that will be called whenever this happens.
function selectedCustomHandler(event, element, path, selected, readOnly) {
console.log(`Open: '${path}'.`)
}
Again note that no callback is passed.
When file and directory entries are moved, the requisite handlers are invoked with three arguments, namely an array of path maps, a reference to the explorer and a done callback method. You must call the done() method when you are done. Each element of the array of path maps is a plain old JavaScript object with sourceEntryPath, targetEntryPath, entryDirectory and collapsed properties. The entryDirectory property is set to true if the entry is a directory. In the case of file path entries, the collapsed property is null.
The path maps are mutable and changing their source and target paths affects behaviour. On the one hand setting the source path in a path map to null means that the corresponding source path is not removed. On the other hand setting the target path to null means that the corresponding target path is not added. Therefore, if you want to entry to be moved as expected then leave the corresponding path map alone, whereas if you want the entry to be left in place then set both the sourceEntryPath and targetEntryPath properties of the requisite path map to null.
This is largely analogous to moving files and directories. In particular, the use of path maps and callback methods is essentially the same, the only difference being that the target path is set to null.
Styles are by way of Easy with Style. If you want to override the styles of child elements of the explorer or rubbish bin, import the default elements, override their styles and then set them as static properties on the parent element. For example, if you want to change the style of the explorer's entries list, import it and change its styles thus...
import withStyle from "easy-with-style"; ///
import { EntriesList } from "easy-file-system";
export default withStyle(EntriesList)`
...
`;
... and then attach it to the explorer like so:
import { Explorer } from "easy-file-system";
import EntriesList from "../list/entries";
export default class extends Explorer {
...
static EntriesList = EntriesList;
}
The list of elements that can be attached to the explorer is:
EntriesListFileNameDragEntryItemFileNameMarkerEntryItemDirectoryNameDragEntryItemDirectoryNameMarkerEntryItemThe list of elements that can be attached to the rubbish bin is:
OpenRubbishBinSVGClosedRubbishBinSVGSimilarly for the directory name drag entry item, ...
NameSpanToggleButtonDirectoryNameSVG...the file name drag entry item...
NameSpanFileNameSVG...and the marker entry item:
MarkerSVGIt is necessary to set a minimum width and height on the explorer in order to make it work when there are no entries present. The default is:
width: fit-content;
min-width: 10rem;
min-height: 2rem;
Note also the width style. The other elements also have default styles that are well worth a close look before attempting to set your own.
Automation is done with npm scripts, have a look at the package.json file. The pertinent commands are:
npm run build-debug
npm run watch-debug
FAQs
A file system explorer and a rubbish bin.
The npm package easy-file-system receives a total of 56 weekly downloads. As such, easy-file-system popularity was classified as not popular.
We found that easy-file-system demonstrated a healthy version release cadence and project activity because the last version was released less than 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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.