https://github.com/alsoicode/kanban-app
A Kanban Board in React
https://github.com/alsoicode/kanban-app
Last synced: 10 months ago
JSON representation
A Kanban Board in React
- Host: GitHub
- URL: https://github.com/alsoicode/kanban-app
- Owner: alsoicode
- Created: 2016-09-01T13:00:50.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-09-01T20:36:52.000Z (almost 10 years ago)
- Last Synced: 2025-06-22T16:10:17.682Z (about 1 year ago)
- Language: JavaScript
- Size: 41 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Kanban App
## Dependencies
[Node.js](https://nodejs.org/en/) is a pre-requisite for serving files in development as well as building the project for deployment. To install the dependencies in package.json, run:
```
$ npm i
```
## IDE
For Visual Studio Code, you can get IntelliSense for React by running:
```
$ npm i typings --global
$ cd [the-project-directory]
$ typings install dt~react --global
$ npm i typescript@next
```
## Local Development
```
$ npm start
```
The app will be available at [http://localhost:3000](http://localhost:3000)
## Production Build
```
$ npm run build
```
## Running the Production Build locally
The integrity of the build process can be checked by serving the "dist" directory via [Express](http://expressjs.com).
```
$ node dist-server.js
```
## Run Tests
```
$ npm test
```