npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

snipercode.filesystem

v1.0.1

Published

File handling and minor os level operations.

Downloads

12

Readme

SniperCode.FileSystem

Automated Test File System GitHub tag (latest SemVer) GitHub last commit GitHubGitHub top language npm

Table of Contents

Introduction

SniperCode.FileSystem is a file system library for JavaScript providing a simple and easy to use file system API based on Node.js. It is designed to be used in a Node.js environment and a core part of the JCore Framework.

Installation

To install SniperCode.FileSystem, run the following command:

    npm install snipercode.filesystem

Uninstall

To uninstall SniperCode.FileSystem, run npm uninstall snipercode.filesystem.

Exposed API

All the exposed API is documented below.

File

This API is used to access file system and self explanatory endpoints. Example:

    const {
        File_System
    } = require('SniperCode.FileSystem');

    // All the exposed endpoints are static methods of File_System class so you can access them directly.

    // Example:
        console.log(File_System.scan_dir('./))
    // Prints the list of files and directories in the current directory.

All the endpoints are listed below.

  1. File_System.path_resolve
  2. File_System.is_file
  3. File_System.file_path
  4. File_System.file_ext
  5. File_System.file_name
  6. File_System.file_name_with_ext
  7. File_System.file_size
  8. File_System.file_exists
  9. File_System.file_stats
  10. File_System.read_file
  11. File_System.write_file
  12. File_System.update_file
  13. File_System.append_file
  14. File_System.delete_file
  15. File_System.rename_file
  16. File_System.copy_file
  17. File_System.move_file
  18. File_System.is_dir
  19. File_System.dir_path
  20. File_System.dir_name
  21. File_System.dir_exists
  22. File_System.scan_dir
  23. File_System.search_dir
  24. File_System.scan_dir_recursive_depth
  25. File_System.scan_dir_recursive
  26. File_System.mkdir
  27. File_System.rename_dir
  28. File_System.copy_dir
  29. File_System.delete_dir

Release

Visit GitHub Release to see the latest release.