Newsletter
Join the Community
Subscribe to our newsletter for the latest news and updates
React Native CLI with a fully tested boilerplate, component/screen generators, and more!
Glim CLI is a React Native boilerplate and command-line tool that scaffolds a New Architecture-ready project and generates components and screens from the terminal. It is published on npm as glim-cli and maintained by the Neoito Hub team under the MIT license, with an open repository on GitHub that welcomes pull requests.
Glim CLI is a command-line interface for React Native that creates a new project with a fully tested boilerplate and provides component and screen generators. You run it with npx glim-cli and it outputs a scaffolded project folder with the typical directory structure and configuration files. The repository topics indicate support for TypeScript, Redux, and Zustand, and the CLI is designed around React Native's latest architecture.
npx glim-cli create-app generates a new React Native project with the standard folders and configuration files.npx glim-cli generate lets you add a new component to your project through a generator.generate command also scaffolds a new screen.npx glim-cli add {componentUniqueId} {ComponentName} fetches an existing component by its unique ID and names it locally in your project.npx glim-cli create-app to produce a full project skeleton with all necessary folders and config files.npx glim-cli generate to add components and screens with the correct boilerplate code.npx glim-cli add to import a component by its unique ID and give it a local name.Glim CLI is executed through npx, so no global installation is required. The create-app command scaffolds a new project, and the generate command interactively creates a component or screen. The add command takes a component unique ID and a target name, then copies that component from the CLI's directory into the current project.
