lyrn
v1.3.0
Published
🚀 Command-line tool for quickly starting the development of your web application
Downloads
26
Maintainers
Readme
Description
Lyrn is a command-line tool for quickly starting the development of your web application.
Install
You can run the application using the npx
utility:
npx lyrn@latest
Or install the package from npm globally
npm i -g lyrn
This will make the lyrn
application globally available in your system
Usage
To create an application, use the command:
lyrn create project your-app-name -f react
This command will create a simple application using the React framework
Development
Navigate to your application folder
cd ./your-app-name
To start the development server, use the command:
npm start
Build
Navigate to your application folder
cd ./your-app-name
To build your project, use the command:
npm run build
To run the built project, use the command:
npm run serve