Xeito - Harness the power of the web.
Xeito is a typescript framework for building web applications
Xeito CLI
This is the CLI library for Xeito Framework.
Provides an easy way to start new Xeito projects and the boilerplate for new components and services.
To find the full documentation and more links go to the main README file.
Installation:
$ npm install -g @xeito/cli
Usage:
$ xeito [command] [options]
Commands:
Create a new Xeito Project:
$ xeito new [project-name]
Generate a new component or service:
$ xeito generate [component|service] [name]
NOTE: The name of the component or service must be in PascalCase, for example: MyComponent
or MyService
.
The component name can contain slashes to indicate a subfolder (if the folder does not exist, it will be created)
$ xeito generate component components/myComponent
This will create a new component in the components
folder with the name myComponent
.
Help:
$ xeito help