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-devnow-app

v0.0.9

Published

create devnow app

Downloads

4

Readme

Create DevNow App

create-devnow-app is a CLI tool to initialize Next.js projects with built-in support for features like TypeScript, Tailwind CSS, ESLint, and Shadcn/ui. It helps developers quickly set up their projects with all the essential tools.


Installation & Usage

1. Run with npx or pnpm

You can use npx to run the tool directly without installing it globally:

npx create-devnow-app@latest <project-name>

# or
pnpm dlx create-devnow-app@latest <project-name>

2. Install Locally

Alternatively, you can install the tool with pnpm, npm, or yarn:

pnpm add create-devnow-app

Then run it:

pnpm create-devnow-app <project-name>

CLI Options

You can configure your project using the following command-line options or run the tool interactively to choose settings during initialization.

Available Options

| Option | Alias | Description | | -------------------- | ----- | ------------------------------------------------ | | --ts, --typescript | | Initialize the project with TypeScript (default) | | --tailwind | | Include Tailwind CSS configuration (default) | | --eslint | | Add ESLint configuration | | --shadcnUI | | Enable Shadcn/ui component library |


Usage Examples

1. Quick Initialization with TypeScript

npx create-devnow-app@latest my-app --typescript --eslint

2. Interactive Setup

If no options are passed, the CLI will enter interactive mode, allowing you to configure the project step-by-step.

npx create-devnow-app@latest my-app

Example interactive flow:

Enter project name: my-app
Select project template: (JavaScript / TypeScript)
Would you like to use Tailwind CSS? (Yes / No)
Would you like to use ESLint? (Yes / No)
Would you like to use Shadcn/ui? (Yes / No)

Post-Initialization Steps

Once the project is successfully created, the following actions are performed:

  1. The tool creates and navigates into the project directory.
  2. If selected, Shadcn/ui will be installed automatically.
  3. The CLI will print further instructions to help you start the project.

Start the Project:

cd <project-name>
pnpm dev

Error Handling

In case the initialization fails, the tool will display detailed error messages to help you troubleshoot.
Some common causes of failure:

  • Invalid or missing project name
  • Network issues preventing dependencies from installing

Contributing

If you encounter issues or have suggestions, feel free to open an issue or submit a pull request!


License

This project is open-sourced under the MIT License.


This README provides all the necessary instructions to help users quickly start a Next.js project using your CLI tool. Make sure to replace any placeholder links with actual repository URLs if needed.