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 🙏

© 2025 – Pkg Stats / Ryan Hefner

nfilemanager

v1.0.5

Published

Web tabanlı dosya yönetim aracı

Readme

nFileManager

A lightweight, web-based file management tool built with Node.js. Upload, download, rename, and delete files through an elegant web interface with real-time progress tracking.

Features

  • 📤 File Upload - Upload files with real-time progress bar showing percentage and MB
  • 📥 File Download - One-click file downloads
  • 📋 File Listing - View all files with size and modification date
  • ✏️ Rename Files - Easily rename your files
  • 🗑️ Delete Files - Remove files with confirmation
  • 🎨 Clean UI - Modern interface built with vanilla CSS (no Bootstrap)
  • 🚀 Easy Setup - Install globally via npm

Installation

# Basic usage
npm i -g nfilemanager
nfilemanager

# OR

# Clone or download the project
git clone [email protected]:necdetuygur/nfilemanager.git
cd nfilemanager

# Install dependencies
npm install

# Install globally
npm link

Usage

# Start with default port (3000)
nfilemanager

# Start with custom port
nfilemanager 8080

Then open your browser and navigate to:

http://localhost:3000

Project Structure

nfilemanager/
├── bin/
│   └── cli.js           # CLI entry point
├── public/
│   ├── index.html       # Web interface
│   ├── style.css        # Styles
│   └── script.js        # Client-side JavaScript
├── index.js             # Express server
├── package.json         # Package configuration
└── uploads/             # Files directory (auto-created)

How It Works

  1. Select a file using the file picker
  2. Upload and watch the real-time progress bar
  3. Manage files - download, rename, or delete from the list
  4. All files are stored in the uploads/ directory

Uninstall

# Remove global link
npm unlink -g nfilemanager

# Or completely uninstall
npm uninstall -g nfilemanager

Technologies Used

  • Node.js - Runtime environment
  • Express.js - Web framework
  • Multer - File upload middleware
  • Vanilla JavaScript - Client-side logic
  • Custom CSS - Styling (no frameworks)

Requirements

  • Node.js >= 14.0.0
  • npm >= 6.0.0

License

MIT

Features in Detail

Upload Progress

The upload progress bar displays:

  • Percentage (0-100%)
  • Uploaded size / Total size in MB
  • Real-time updates during upload

File Management

  • List: Automatically loads all uploaded files
  • Download: Direct download via browser
  • Rename: Prompt-based file renaming
  • Delete: Confirmation dialog before deletion

Responsive Design

The interface is fully responsive and works on:

  • Desktop computers
  • Tablets
  • Mobile devices

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Support

If you encounter any issues or have questions, please open an issue on the GitHub repository.