Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/franekstein/react-ts-starter
Modern React & Typescript boilerplate.
https://github.com/franekstein/react-ts-starter
cssmodules postcss react sass typescript webpack
Last synced: about 1 month ago
JSON representation
Modern React & Typescript boilerplate.
- Host: GitHub
- URL: https://github.com/franekstein/react-ts-starter
- Owner: franekstein
- License: mit
- Created: 2020-11-16T21:17:14.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-09-11T20:07:14.000Z (about 2 years ago)
- Last Synced: 2024-10-01T03:07:26.741Z (about 2 months ago)
- Topics: cssmodules, postcss, react, sass, typescript, webpack
- Language: JavaScript
- Homepage:
- Size: 3.57 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 📦 React Typescript Starter
Modern React & Typescript boilerplate
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
## Installation
Clone this repo and yarn install.
```bash
yarn
```## Usage
### Development server
```bash
yarn start
```You can view the development server at `localhost:8080`.
### Production build
```bash
yarn build
```You need to generate certificates if you want to use local server (HTTPS/HTTP2) for serving production build
```bash
cd server/certificates
openssl req -x509 -sha256 -nodes -days 365 -newkey rsa:4096 -keyout private.key -out certificate.crt
```or you can serve it with `serve` package
```bash
yarn build
npx serve build
```## Features
- [Webpack](https://webpack.js.org/)
- [React](https://reactjs.org/)
- [Typescript](https://www.typescriptlang.org/)
- [Babel](https://babeljs.io/)
- [Sass](https://sass-lang.com/)
- [PostCSS](https://postcss.org/) - with CSS Modules, custom properties, custom selectors, custom media and image set## Problems
## License
This project is open source and available under the [MIT License](LICENSE).