Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pranshuchittora/ink-starter
Easy onboarding with ink for blazing fast development.
https://github.com/pranshuchittora/ink-starter
Last synced: about 1 month ago
JSON representation
Easy onboarding with ink for blazing fast development.
- Host: GitHub
- URL: https://github.com/pranshuchittora/ink-starter
- Owner: pranshuchittora
- Created: 2019-06-20T05:53:22.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-12-03T11:56:22.000Z (about 5 years ago)
- Last Synced: 2024-11-01T21:33:28.482Z (about 1 month ago)
- Language: JavaScript
- Size: 135 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-blazingly-fast - ink-starter - Easy onboarding with ink for blazing fast development. (JavaScript)
README
The on the go ink starter
## Install
```bash
# Clone
git clone https://github.com/pranshuchittora/ink-starter.git --depth=1cd ink-starter
# Install dependencies
npm install```
## Getting started with the workflow
The boilerplate comes with all the required dependencies. Which required zero configuration out of the box.
Apart from that it has typescript enable which helps you write robust code.
The source code goes inside the `src` directory which gets compiled to `js` in the `dist` directory.
### Real-time compiling
The typescript compiler support files watching which compiles the files as soon as they get changed, and emits errors in real time.
```bash
# To start typescript in watch mode
npm run watch
```### Building
Just run `npm run build`. After building
### Installed dependencies
- [ink](https://www.npmjs.com/package/ink)
- [react](https://www.npmjs.com/package/react)
- [typescript](https://www.npmjs.com/package/typescript)
- [@types/ink](https://www.npmjs.com/package/@types/ink)
- [@types/react](https://www.npmjs.com/package/@types/react)