Newsletter
Join the Community
Subscribe to our newsletter for the latest news and updates
CLI starter kit for Next.js, Gatsby, Create React App, and React Native projects with Ueno configs.
Create Ueno App is a deprecated command-line starter kit from the digital agency Ueno that scaffolds web projects with Next.js, Gatsby, or Create React App and mobile projects with React Native, all preconfigured with Ueno's opinionated tooling. The repository warns that the starter kits are no longer actively maintained, so they are best used as a reference or for legacy projects.
Create Ueno App is a CLI tool that takes a stack name (gatsby, next, cra, or native), an app name, and a style library (sass or styled) as arguments and produces a ready-to-run project with Ueno's configuration. It runs via npx or yarn create and does not require a global install. The project is maintained by Ueno LLC and documented on GitHub Pages.
components/header/Header without relative paths, making code cleaner.npx create-ueno-app next my-app sass or a Gatsby app with npx create-ueno-app gatsby my-app styled.npx create-ueno-app native my-app styled; SASS is not supported on this stack.Run npx create-ueno-app <gatsby|next|cra|native> my-app <sass|styled> or the equivalent yarn create ueno-app command. The CLI requires a stack, app name, and style; if style is omitted it defaults to styled-components. The CRA starter does not support styled-components, and the native starter does not support SASS.
No — the repository states that the starter kits have been deprecated and are no longer actively maintained. You may encounter unpatched dependencies or bugs if you use them in new projects.
It supports Next.js (next), Gatsby (gatsby), Create React App (cra), and React Native (native). Each stack has its own starter with Ueno's configuration.
No, the CRA starter does not support styled-components. It uses SASS or CSS modules instead, so you would choose sass when creating a CRA project.
If you do not specify a style argument, the CLI defaults to styled-components. This applies to the supported stacks except CRA, where styled-components is not available.
Use npx create-ueno-app or yarn create ueno-app directly. The repository explicitly recommends against installing create-ueno-app globally.
