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

create-jtoar-app

v0.0.1-exp.6

Published

[![RedwoodJS](https://raw.githubusercontent.com/redwoodjs/redwoodjs.com/main/publish/images/mark-logo-cover.png)](https://redwoodjs.com)

Readme

RedwoodJS

Redwood is an opinionated, edge-ready framework for modern multi-client applications, built on React, GraphQL, and Prisma with full TypeScript support and ready to go with zero config.

Want great developer experience and easy scaling? How about an integrated front- and back-end test suite, boilerplate code generators, component design, logging, API security + auth, and serverless or traditional deploy support? Redwood is here! Redwood works with the components and development workflow you love but with simple conventions and helpers to make your experience even better.

Redwood requires Node.js >=14.x <=16.x and Yarn v1.15 (or newer).

yarn create redwood-app redwood-project
cd redwood-project
yarn redwood dev

Contributors are Welcome! Get started here. And don't hesitate to ask for help on the forums and chat

Table of Contents

Description

This package creates and installs a Redwood project, which is the entry point for anyone using Redwood. It has two parts:

  • The installation script create-redwood-app.js
  • Project template code in the template/ directory

For information about contributing to the Redwood Framework in general, please start here.

Package Leads

Roadmap

v1 Priorities:

  • convert template/ codebase to TypeScript
  • add option to install as either TypeScript or JavaScript project (defaults to TypeScript)
  • add package tests, which may be accomplished by including in Cypress E2E CI

Local Development

Installation Script

The installation script is built with Yargs

Template Codebase

The project codebase in template/ uses Yarn Workspace v1 for a monorepo project containing the API and Web Sides. Redwood packages are included in template/package.json, template/web/package.json, and template/api/package.json, respectively.

How to run create-redwood-app from your local repo and create a project

First, run the following commands in the root of the monorepo:

yarn install
yarn build

Then, we need to navigate to the create redwood app package and build the script:

cd packages/create-redwood-app
yarn build

Note: You can also use yarn build:watch instead of yarn build to watch for changes and rebuild automatically.

This will generate the create-redwood-app.js file inside the dist directory.

To use the script, run node on that file (dist/create-redwood-app.js) and pass in the path to the new project:

node dist/create-redwood-app.js /path/to/new/redwood-app

Note: the new project will install with the most recent major Redwood package version by default

How to run other published versions for debugging

By default yarn create will pick the latest stable version to run, but you can specify a different version via yarn too!

To try the canary version, run:

npx create-redwood-app@canary /path/to/project

Note that this will still create a project with the latest stable version, but run the canary version of create-redwood-app, and is mainly useful for debugging this package, and not the redwood canary release.

You can specify any tag or version instead of @canary

Develop using the new project

There are three options for developing with the installed project:

1. Upgrade the project to use the latest canary release

cd /path/to/new/redwood-app
yarn rw upgrade -t canary

2. Use the workflow and tools for local package development