Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/orbs-network/orbs-project-generator
Generates basic project scaffold
https://github.com/orbs-network/orbs-project-generator
Last synced: 3 months ago
JSON representation
Generates basic project scaffold
- Host: GitHub
- URL: https://github.com/orbs-network/orbs-project-generator
- Owner: orbs-network
- Created: 2019-09-01T08:58:44.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-30T18:31:59.000Z (almost 2 years ago)
- Last Synced: 2024-07-24T02:35:01.781Z (4 months ago)
- Language: JavaScript
- Size: 35.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Orbs project generator
Generates basic project. Result consists of several parts:
* contract in `src/contract/app/contract.go`
* JS interface in `src/app.js`
* Deployment script in `src/deploy_app.js`
* End to end test in `test/app_test.js`
* `package.json` with all required dependencies
* `.gitignore`## Installation
```
npm install -g @orbs-network/orbs-project-generator
```## Run
Plase note that app name should be camel case: `AppName`.
You can safely run the generator multiple times in the same directory to generate scaffolding for different contracts.
```
orbs-project-generator create
``````
orbs-project-generator create Hello .
```## Testing the project
```
npm test
```