Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/resir014/nodecg-react-typescript-tailwind-quickstart
Get started creating NodeCG bundles with React + TypeScript + TailwindCSS in seconds.
https://github.com/resir014/nodecg-react-typescript-tailwind-quickstart
nodecg nodecg-bundle react starter-kit tailwindcss typescript
Last synced: 15 days ago
JSON representation
Get started creating NodeCG bundles with React + TypeScript + TailwindCSS in seconds.
- Host: GitHub
- URL: https://github.com/resir014/nodecg-react-typescript-tailwind-quickstart
- Owner: resir014
- License: unlicense
- Created: 2022-10-24T05:37:57.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-21T16:31:30.000Z (about 2 years ago)
- Last Synced: 2024-10-28T05:36:01.473Z (2 months ago)
- Topics: nodecg, nodecg-bundle, react, starter-kit, tailwindcss, typescript
- Language: JavaScript
- Homepage:
- Size: 120 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# nodecg-react-typescript-tailwind-quickstart
> Get started creating NodeCG bundles with React + TypeScript + TailwindCSS in seconds.
## Getting started
### Prerequisites
You will need:
- [Git](https://git-scm.com/)
- [Node.js](https://nodejs.org/en/) (v16.0+)
- [Yarn](https://classic.yarnpkg.com/lang/en/) (v1)### Install NodeCG
Follow [this guide](https://www.nodecg.dev/docs/installing) to install and run NodeCG locally.
In summary:
```bash
# Install nodecg + dependencies
npm install --global nodecg-cli
mkdir nodecg
cd nodecg
nodecg setup
```### Setup the bundle
On your root NodeCG bundle, install the bundle via the NodeCG CLI
```bash
cd bundles
git clone https://github.com/resir014/nodecg-react-typescript-tailwind-quickstart.git my-bundle-name
cd my-bundle-name
yarn
```Then, update the bundle's `package.json` to match the new bundle name.
```json
{
"name": "my-bundle-name"
}
```### Start developing
On one terminal window, run a local server for development.
```bash
yarn watch
```On another terminal window, navigate to the NodeCG root folder, and start the server.
```bash
# Run nodecg locally
nodecg start
```## Creating bundle files
The Webpack config is set up so you can easily create multiple dashboard/graphics files and will be bundled separately.
As long as you follow these naming conventions, all files are automatically generated in the main `dashboard`/`graphics` folders.
```
my-bundle/
├─ package.json
├─ webpack.config.js
└─ src/
├─ dashboard/
│ ├─ [name].dashboard.html
│ ├─ [name].dashboard.tsx
│ └─ [name].dashboard.css
└─ graphics/
├─ [name].graphics.html
├─ [name].graphics.tsx
└─ [name].graphics.css
```Then, you can manually add these into your bundle config on the `package.json` file.
```json
{
"nodecg": {
"dashboardPanels": [
{
"name": "index",
"title": "Index",
"width": 6,
"file": "index.html",
"headerColor": "#68717b"
},
{
"name": "second",
"title": "Second Panel",
"width": 4,
"file": "second.html",
"headerColor": "#0070f3"
}
],
"graphics": [
{
"file": "index.html",
"width": 1920,
"height": 1080
},
{
"file": "other-graphic.html",
"width": 1920,
"height": 1080
}
]
}
}
```