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

create-menth-app

v1.0.9

Published

CLI to create a MENTH project. MENTH is a robust starter template designed to streamline the development process for web applications using MongoDB, Express, Node.js, TailwindCSS, and Handlebars. This template provides a solid foundation to build upon, en

Downloads

40

Readme

create-menth-app

create-menth-app is a CLI tool that helps you quickly set up a new project with the MENTH stack (MongoDB, Express, Node.js, TailwindCSS, and Handlebars).

Overview

The MENTH stack is a robust combination of technologies designed to streamline the development process for web applications. This CLI tool provides a base template with best practices and a cohesive integration of the technologies involved.

Features

  • MongoDB: A NoSQL database for storing and managing data.
  • Express: A web application framework for Node.js, providing a robust set of features for building web and mobile applications.
  • Node.js: A JavaScript runtime built on Chrome's V8 JavaScript engine, enabling server-side JavaScript execution.
  • TailwindCSS: A utility-first CSS framework for rapidly building custom designs.
  • Handlebars: A simple templating language to create HTML templates with embedded expressions.

Installation

To use the create-menth-app CLI, you need to have Node.js installed on your machine. You can create a new MENTH project by running:

npx create-menth-app my-new-project

Usage

  1. Create a new project:

    npx create-menth-app my-new-project
  2. Navigate to the project directory:

    cd my-new-project
  3. Install dependencies:

    The npx command will automatically install the necessary dependencies. If you need to reinstall them later, run:

    npm install
  4. Start the development server:

    npm run dev

    This command will start the server with live reloading enabled.

Project Structure

my-new-project/
├── .github/               # GitHub configuration files and workflows
├── src/
├── config/                # Configuration files and scripts
├── public/                # Static assets
│   ├── css/               # Stylesheets
│   ├── js/                # Scripts
│   ├── images/            # Images
│   ├── favicon.ico
├── components/            # Handlebars components and partials
├── controllers/           # Express route controllers
├── middleware/            # Express middleware
├── models/                # Mongoose models
├── routes/                # Express routes
├── services/              # Business logic and services
├── views/                 # Handlebars templates
├── server/                # Server-related files
│   ├── db/                # Database connection files
│   │   └── db_connection.js  # MongoDB connection configuration
│   └── server.js          # Entry point for the server
├── .env                   # Environment variables
├── .eslintignore          # ESLint ignore file
├── .eslintrc.json         # ESLint configuration
├── .gitignore             # Git ignore file
├── package.json           # Node.js dependencies and scripts
├── README.md              # Project documentation
└── tailwind.config.js     # TailwindCSS configuration

Configuration

  • MongoDB: Configure your MongoDB URI in the .env file.
  • TailwindCSS: Modify the tailwind.config.js file to customize your TailwindCSS setup.
  • Express: Add or modify routes in the src/routes directory and their corresponding controllers in src/controllers.

Contributing

We welcome contributions to improve create-menth-app. To contribute, please follow these steps:

  1. Fork the repository.
  2. Create a new branch (git checkout -b feature/your-feature).
  3. Commit your changes (git commit -m 'Add some feature').
  4. Push to the branch (git push origin feature/your-feature).
  5. Open a pull request.

License

This project is licensed under the MIT License. See the LICENSE file for more details.