Open
Description
I'm trying to use this project as a template to help me understand how to integrate RacketScript/Rackt in my own projects. I was able to get it to build, but I feel my workflow is different from what you're intending. I'll say what I did, and maybe you can say what I should have done?
Setup
- I installed
racketscript
(raco pkg install racketscript
). - I installed
rackt
(git clone [email protected]:rackt-org/rackt.git; cd ./rackt; raco pkg install
) - I cloned this repo.
Build
- In the cloned directory, I ran
racks src/app.rkt
- I served the cloned directory and viewed
index.html
in my browser
I got errors that indicated that "react-dom" was not being found.
After some digging around and some failed attempts, I stumbled upon the following workflow, which worked:
cd
into the localrackt
directory produced fromracks
command.- Did
npm init; npm install react react-dom
- Re-ran
racks
withracks --target webpack src/app.rkt
- Ran
cd js-build; npx webpack
- Edited
index.html
's relevant<script />
tag to load/js-build/dist/main.js
instead of/js-build/modules/app.rkt.js
- Visited the served
index.html
file in my browser and it worked!
This is really exciting! I'm excited to start using this.
However, given that I edited an html file, I'm sure your workflow is different from mine. What should I be doing?
Metadata
Metadata
Assignees
Labels
No labels