https://github.com/cloud-design-patterns-journey/template-carbon-react
Starter kit for for modern web developmen with React, Sass, Carbon and Create React App.
https://github.com/cloud-design-patterns-journey/template-carbon-react
carbon-design-system cloud hybrid-cloud kubernetes nodejs openshift react starter-kit tekton
Last synced: 8 months ago
JSON representation
Starter kit for for modern web developmen with React, Sass, Carbon and Create React App.
- Host: GitHub
- URL: https://github.com/cloud-design-patterns-journey/template-carbon-react
- Owner: cloud-design-patterns-journey
- License: apache-2.0
- Created: 2024-04-20T22:55:55.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-27T14:37:14.000Z (over 1 year ago)
- Last Synced: 2025-01-05T02:10:02.175Z (9 months ago)
- Topics: carbon-design-system, cloud, hybrid-cloud, kubernetes, nodejs, openshift, react, starter-kit, tekton
- Language: JavaScript
- Homepage: https://cloud-design-patterns-journey.github.io/docs
- Size: 592 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Carbon React with Node.js
React is a popular framework for creating user interfaces in modular components. In this sample application, you will create a web application using Express and React to serve web pages in Node.js, complete with standard best practices, including a health check and application metric monitoring.
This app contains an opinionated set of components for modern web development, including:
* [React](https://facebook.github.io/react/)
* [Sass](http://sass-lang.com/)
* [Carbon](https://www.carbondesignsystem.com/)
* [Create React App](https://github.com/facebook/create-react-app)#### Native Application Development
Install the latest [Node.js](https://nodejs.org/en/download/) 6+ LTS version.
Once the Node toolchain has been installed, you can download the project dependencies with:
```bash
npm install -g yarn
yarn install
```##### Local development
To run application for local development and get live updates on code changes:
```sh
yarn start:dev
```##### Test
To run unit tests:
```sh
yarn test
```##### Run production build
To try a production build, run:
```sh
yarn build
yarn start
```