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

hydrogen-fw

v1.0.9

Published

Hydrogen CLI tool

Downloads

5

Readme

HydrogenJS Framework CLI

npm version

HydrogenJS Framework CLI is a custom command-line interface tool designed to simplify and accelerate development workflows for Node.js projects and frameworks. This CLI tool provides a seamless experience for developers by offering intuitive commands to create new projects, modules, and handle various other development tasks, making it easier to build and manage projects efficiently.

🚀 Features

  • Project Creation: Quickly scaffold new projects using the create command.
  • Module Generation: Easily add new modules to your project with the module command.
  • Version Display: Check the current version of the CLI tool using the version command.
  • Simplified Development Workflow: Reduce the complexity of setting up projects and modules by using HydrogenJS Framework CLI.

📦 Installation

You can install the CLI globally using npm:

npm install -g hydrogen-fw
Alternatively, use it without installation via npx:
```bash
npx hydrogen-fw

🛠️ Usage
After installation, you can use the following commands to interact with the CLI:
```bash
# Check the current version of HydrogenJS Framework CLI
hydrogen version

# Create a new project with the specified name
hydrogen create <projectName>

# Generate a new module within your project
hydrogen module <moduleName>

📚 Command Reference
Command	Description
hydrogen version	Displays the current version of the CLI tool.
hydrogen create <name>	Creates a new project with the specified name.
hydrogen module <name>	Generates a new module with the specified name in the project.

🧩 Explanation
The CLI comes with multiple commands to streamline your development process:

hydrogen version: Use this command to display the current version of the HydrogenJS Framework CLI.

hydrogen create <projectName>: Creates a new project with the specified name. This command sets up a basic project folder structure, initializes a new Node.js project with a package.json file, and installs necessary dependencies.

hydrogen module <moduleName>: Generates a new module within your project. It scaffolds the required files and folders for the module, making it easy to extend your application with new features.

✨ Examples
Create a New Project
```bash
hydrogen create my-awesome-project

This command creates a new directory called my-awesome-project with a basic folder structure and essential configuration files for starting your project.

Create a New Module
```bash
cd my-awesome-project
hydrogen module user

💡 Contributing
We welcome contributions from the community! If you want to contribute to HydrogenJS Framework CLI, feel free to:

Fork the repository.
Create a new branch for your feature or bug fix.
Submit a pull request with a detailed description of your changes.
Please make sure to follow the Contributor's Guide and adhere to the project's coding standards.

📜 License
This project is licensed under the MIT License. Feel free to use, modify, and distribute it as per the terms of the license.

🌐 Links
GitHub Repository
NPM Package
Documentation