https://github.com/tram-one/tram-one-express
🏂 Generator to build Tram-One applications quickly
https://github.com/tram-one/tram-one-express
Last synced: 9 months ago
JSON representation
🏂 Generator to build Tram-One applications quickly
- Host: GitHub
- URL: https://github.com/tram-one/tram-one-express
- Owner: Tram-One
- Created: 2017-08-28T00:16:56.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2022-06-17T04:39:16.000Z (about 4 years ago)
- Last Synced: 2025-08-22T19:55:27.482Z (10 months ago)
- Language: JavaScript
- Homepage:
- Size: 137 MB
- Stars: 4
- Watchers: 4
- Forks: 7
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tram-One Express
Tram-One Express is a generator for building tram-one applications.
## Usage
To use tram-one-express, run using `npx`, and pass the app-name of what project you want to create:
```
$ npx tram-one-express app-name
```
This will create a directory in your current directory with the name that you pass into tram-one-express.
## What's in the box
The scaffolded project includes a bare-bones setup that has all the tooling required to get started building!
See https://github.com/Tram-One/tram-one-express/tree/master-tram-one-example to see what the project looks like,
or try it live with codesandbox projects here: https://codesandbox.io/p/github/Tram-One/tram-one-express/master-tram-one-example
## Developement Commands
Below are a list of commands used for developement. The logic for all the commands are in the local `package.json`
- `npm run generate-example` - alias for `example-generate`
- `npm run example-generate` - creates an example app and installs dependencies in the example
- `npm run example-build` - runs `npm run build` in the example project
- `npm run example-test` - runs the test suite for the example app
- `npm run ci-run` - runs all the commands in the order that circleci would trigger them, one automatically after the other