Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kyledecot/next-worker-bug
https://github.com/kyledecot/next-worker-bug
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/kyledecot/next-worker-bug
- Owner: kyledecot
- Created: 2024-07-19T18:24:14.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-07-19T18:39:58.000Z (6 months ago)
- Last Synced: 2024-07-19T23:48:49.816Z (6 months ago)
- Language: TypeScript
- Size: 31.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
First, build the worker package.
Note: In this simplified example this package lives in the same repo as the NextJS application using it however in a real-world scenario this would be a package installed via npmjs.org
```
cd ./worker
npm install
npm run build
cd -
```Next, Run the NextJS application using
```
cd ./app
npm install
npm run dev
```Open http://localhost:3000