So when I create a new project it errors on yarn rw dev , still listens on the port according to the command and the command doesn’t exit, but going to http://localhost:8910/ gives connection refused
All I did was run yarn create redwood-app ./redwood-test then cd ./redwood-test and finally yarn rw dev
Hi all, thanks for responding. @ajoslin103 I did try killing all node process, and that didn’t work, I did try rebooting as well and that didn’t work either. @dom I’m going to try removing the node_modules and yarn.lock but I doubt it’ll work. What details do you need exactly? I’ll post those when I notice the response.
I notice that node-gyp failed during the creation, but it completed anyway.
This is what I see after setup and during startup (I had success, it worked)
anon23:Development ajoslin$ cd ./redwood-test
anon23:redwood-test ajoslin$ yarn rw dev
^[[1;9C(node:28940) [FST_MODULE_DEP_FASTIFY-REPLY-FROM] FastifyWarning.fastify-reply-from: fastify-reply-from has been deprecated. Use @fastify/reply-from@7.0.0 instead.
(Use `node --trace-warnings ...` to show where the warning was created)
✔ Generating the Prisma client...
gen | Generating TypeScript definitions and GraphQL schemas...
gen | 14 files generated
api | Building... Took 11341 ms
api | Debugger listening on ws://127.0.0.1:18911/9dfd4bd5-966d-490e-90b4-04c1dcd0f85c
api | For help, see: https://nodejs.org/en/docs/inspector
api | Starting API Server...
api | Loading server config from /Users/ajoslin/Documents/Als/Development/redwood-test/api/server.config.js
api |
api | Importing Server Functions...
api | /graphql 528 ms
api | (node:29103) [FST_MODULE_DEP_FASTIFY-REPLY-FROM] FastifyWarning.fastify-reply-from: fastify-reply-from has been deprecated. Use @fastify/reply-from@7.0.0 instead.
api | (Use `node --trace-warnings ...` to show where the warning was created)
api | ...Done importing in 553 ms
api | Took 2703 ms
api | API listening on http://localhost:8911/
api | GraphQL endpoint at /graphql
api | 12:39:27 🌲 Server listening at http://[::]:8911
web | assets by path static/js/*.js 2.9 MiB
web | asset static/js/app.bundle.js 2.85 MiB [emitted] (name: app) 1 related asset
web | asset static/js/runtime-app.bundle.js 49.3 KiB [emitted] (name: runtime-app) 1 related asset
web | asset static/js/src_pages_NotFoundPage_NotFoundPage_js.chunk.js 3.37 KiB [emitted] 1 related asset
web | asset README.md 1.9 KiB [emitted] [from: public/README.md] [copied]
web | asset favicon.png 1.7 KiB [emitted] [from: public/favicon.png] [copied]
web | asset index.html 483 bytes [emitted]
web | asset robots.txt 24 bytes [emitted] [from: public/robots.txt] [copied]
web | Entrypoint app 2.9 MiB (2.86 MiB) = static/js/runtime-app.bundle.js 49.3 KiB static/js/app.bundle.js 2.85 MiB 2 auxiliary assets
web | 863 modules
web | webpack 5.72.0 compiled successfully in 43414 ms
api | 12:39:32 🌲 incoming request POST xxx /graphql
api | 12:39:32 🐛 Extracting GraphQL Parameters
api | 12:39:32 🐛 Processing GraphQL Parameters
api | 12:39:32 🐛 Execution start
api | 12:39:32 🐛
api | Received GraphQL operation:
api |
api | 12:39:32 🐛 graphql-server GraphQL execution started: RedwoodVersion
api | 12:39:32 🐛 Execution end
api | 12:39:32 🐛 result:
api | 12:39:32 🐛 graphql-server GraphQL execution completed: RedwoodVersion
api | (node:29103) ExperimentalWarning: buffer.Blob is an experimental feature. This feature could change at any time
api | 12:39:32 🌲 request completed 245ms
I found one of the issues, my Powershell v1.0 exe didn’t exist, so it was trying to call that and couldn’t. I’ve fixed that and I’m about to try it again