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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@zarcotech/nova

v1.0.1

Published

![novaJS](icon.png "NovaJS")

Readme

novaJS

🚀 novaJS

Fast, robust, secure, and simple way to integrate your webOS apps, or teach Linux development

This project is associated with the ADSL license


📋 Table of Contents

📦 Installation

Via NPM

npm install @zarcotech/novajs

Via PNPM

pnpm install @zarcotech/novajs

Via Git Clone

git clone https://github.com/Zarcotech/novaJS.git
cd novaJS
npm install

Prerequisites

  • ✅ Node.js (v14+)
  • ✅ npm or pnpm
  • ✅ git (for cloning)

📚 Requirements

NovaJS depends on these awesome packages:

| Package | Purpose | |---------|---------| | 🎨 chalk | Terminal string styling | | 🌐 express | Web server framework | | 📝 figlet | ASCII art text | | 📖 readline | Terminal input handling | | ⌨️ readline-sync | Synchronous readline | | 💻 systeminformation | System info retrieval |

Note: All dependencies are automatically installed when you install novaJS via npm/pnpm

✨ Features

  • 🖥️ Web-based Terminal UI - Browser-accessible terminal at http://localhost:3000/nova/terminal
  • 💻 CLI Terminal - Full-featured command-line interface
  • 🎨 Colored Output - Syntax-highlighted file listings and output
  • 📁 File Management - ls, cd, pwd, mkdir, rmdir, touch, rm, cat, echo
  • 📊 System Info - Fetch device and system information
  • ✏️ Nile Editor - Built-in simple file editor
  • 🔒 Secure - No direct system shell passthrough (browser-safe)
  • 🎯 Lightweight - Minimal dependencies, easy integration
  • 🌐 MIME Type Support - Proper CSS, HTML, and asset serving

🎮 Usage

As a Dependency

import terminal from '@zarcotech/novajs';

// Start on default port 3000
terminal();

// Or specify a custom port
terminal(8080);

Standalone

npm install @zarcotech/novajs
node -e "import('@zarcotech/novajs').then(m => m.default(3000))"

Then open your browser to:

http://localhost:3000/nova/terminal

CLI Usage

node yourfile.js

Then use the terminal commands directly in your console.

🛠️ Commands

| Command | Usage | Description | |---------|-------|-------------| | help | help | Display all available commands | | ls | ls | List files in current directory | | pwd | pwd | Print working directory | | cd | cd <directory> | Change directory | | mkdir | mkdir <dirname> | Create a new directory | | rmdir | rmdir <dirname> | Remove directory | | touch | touch <filename> | Create empty file | | rm | rm <filename> | Remove file | | cat | cat <filename> | Display file contents | | echo | echo <text> | Display text | | nile | nile <filename> | Open Nile text editor | | fetchdev | fetchdev | Show system information | | clear/cls | clear | Clear terminal screen | | exit | exit | Exit the terminal |

💡 Examples

Create and Edit a File

$ touch myfile.txt
Created file: myfile.txt

$ nile myfile.txt
--- Nile Editor ---
(Edit your content)
SAVE
File 'myfile.txt' saved and closed.

$ cat myfile.txt
(Your content appears here)

Navigate Directories

$ pwd
/home/user/projects

$ mkdir new-project
Created directory: new-project

$ cd new-project
/home/user/projects/new-project

$ ls
(Lists files in current directory)

System Information

$ fetchdev
Fetching Device Info...
CPU: Intel Core i7
OS: Windows
RAM: 16 GB
Architecture: x64
Platform: win32
Node Version: v18.0.0

🔧 Advanced Configuration

Custom Port

import terminal from '@zarcotech/novajs';
terminal(9000); // Runs on port 9000

In Express App

import express from 'express';
import terminal from '@zarcotech/novajs';

const app = express();

// Start novaJS on port 3000 in the background
terminal(3000);

// Your other express routes
app.get('/', (req, res) => res.send('Main App'));

app.listen(8000, () => console.log('Main app on port 8000'));

📄 License

This project is licensed under the Amazon Digital Services License (ADSL). See LICENSE for details.

Key Points:

  • ✅ Non-commercial use allowed
  • ✅ Academic and educational use permitted
  • ❌ Commercial use restricted
  • ❌ No warranty provided

👨‍💻 Author

Zarcotech - GitHub

🤝 Contributing

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

🐛 Issues

Found a bug? Open an issue on GitHub Issues

📞 Support

For questions or support, please visit our GitHub repository


Made with ❤️ by Zarcotech