Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jeroenouw/solcli
💻 Ultimate cli for Solidity projects
https://github.com/jeroenouw/solcli
cli generator solidity typescript
Last synced: 4 days ago
JSON representation
💻 Ultimate cli for Solidity projects
- Host: GitHub
- URL: https://github.com/jeroenouw/solcli
- Owner: jeroenouw
- License: mit
- Created: 2019-02-17T12:42:10.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-03-06T15:36:04.000Z (over 5 years ago)
- Last Synced: 2024-08-10T19:02:58.448Z (3 months ago)
- Topics: cli, generator, solidity, typescript
- Language: TypeScript
- Homepage:
- Size: 8.79 KB
- Stars: 1
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# SOLCLI - Ultimate cli for Solidity projects
[![npmversion](https://img.shields.io/npm/v/solcli.svg)](https://github.com/jeroenouw/solcli)
[![npmlicense](https://img.shields.io/npm/l/solcli.svg)](https://github.com/jeroenouw/solcli/blob/master/LICENSE/)
[![downloads](https://img.shields.io/npm/dy/solcli.svg)](https://github.com/jeroenouw/solcli)## Quickstart
Install solcli as a global CLI.
```shell
npm install -g solclicd
# Then you run
solcli -p
```This should setup a project with all the necessary folders and files.
### Commands
```shell
# Create a setup for your Solidity project
solcli -p
solcli --project# Create a default Solidity contract
solcli -c
solcli --contract```
## Contributing
Want to file a bug, contribute some code, or improve documentation? Feel free to place an [issue](https://github.com/jeroenouw/solcli/issues).
First fork this project.
```shell
git clone
npm installgit checkout -b my-fix
# fix some code...git commit -m "added this feature"
git push origin my-fix
```Lastly, open a pull request on Github.
## License
[![npmlicense](https://img.shields.io/npm/l/solcli.svg)](https://github.com/jeroenouw/solcli/blob/master/LICENSE/)