New to TS/JS. Trying to run example.ts #78
-
I'm trying to run example.js I cloned the repo. Cd'd into it. but im hit with
am i missing something? i am mostly a mobile/kotlin dev so im out of my depth here 😅 |
Beta Was this translation helpful? Give feedback.
Answered by
parnic
Jul 10, 2024
Replies: 1 comment 6 replies
-
You should:
|
Beta Was this translation helpful? Give feedback.
6 replies
Answer selected by
ColtonIdle
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You should:
npm install
to get dependencies installed locally, not a global version of a dependencynpm build
npm run build
if you want to re-compile the typescript, but this is not required as the compiled files are already in the "dist" foldernode dist/example.js
to run the example script