https://github.com/devlato/sample-sign-up-page
Bootstrapped with create-react-app
https://github.com/devlato/sample-sign-up-page
Last synced: about 1 year ago
JSON representation
Bootstrapped with create-react-app
- Host: GitHub
- URL: https://github.com/devlato/sample-sign-up-page
- Owner: devlato
- Created: 2017-12-22T01:07:22.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-12-22T01:08:37.000Z (over 8 years ago)
- Last Synced: 2025-01-22T23:26:55.816Z (over 1 year ago)
- Language: TypeScript
- Size: 68.4 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sample Sign-up Form
Sample sign-up page with custom grid system
## Requirements
The project was bootstrapped with [create-react-app for TypeScript](https://github.com/Microsoft/TypeScript-React-Starter).
So you need Node.js and npm or yarn.
Then you can install all the dependencies:
```sh
$ npm i
```
or
```sh
$ yarn
```
respectively. I'm using yarn, so I'll be writing commands for yarn.
You can convert them to npm commands easily using the
[cheatsheet](https://shift.infinite.red/npm-vs-yarn-cheat-sheet-8755b092e5cc).
## Running the project
To run the project, just type
```sh
$ yarn start
```
## Running tests
To run the unit tests, just use the command
```sh
$ yarn test
```
If you want to see the coverage, run it with `--` and ``--coverage` flag:
```sh
$ yarn test -- --coverage
```