https://github.com/ignaciofernandez1311/pulsar_cli
Command Line Interface for the Pulsar Web Framework
https://github.com/ignaciofernandez1311/pulsar_cli
cli dev frontend web
Last synced: 4 months ago
JSON representation
Command Line Interface for the Pulsar Web Framework
- Host: GitHub
- URL: https://github.com/ignaciofernandez1311/pulsar_cli
- Owner: IgnacioFernandez1311
- License: bsd-3-clause
- Created: 2025-10-11T05:12:47.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2026-02-04T14:34:15.000Z (5 months ago)
- Last Synced: 2026-02-05T01:45:46.881Z (5 months ago)
- Topics: cli, dev, frontend, web
- Language: Dart
- Homepage: https://pulsar-web.netlify.app
- Size: 135 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# pulsar_cli
> Command Line Interface for the **Pulsar** Web Framework
## Activate
Activate the pulsar_cli using
```bash
dart pub global activate pulsar_cli
```
Then use the command `pulsar` for creating and serve Pulsar projects.
## Usage
Use `create` to make a new project. The `create` can define two options:
- `--template`: `default`, `minimum`, `empty`
- `--use-cdn`: `none`, `materialize`, `tailwind`. Defaults on `none`.
```bash
pulsar create app_name
```
## Serving
Serve a local server using the following command.
```bash
pulsar serve
```
The server will be running at the 8080 port by default. If you want to use another port you can use the `--port` option of this command. Run `pulsar help` for more information.
Also you can use the `--watch` option for live reload.
## Building
You can build a project to production using the following command.
```bash
pulsar build
```
Note that you can use `--release` and `--[no]-release` flags. Defaults on `--release`.