docs: beginner onboarding + fix newcomer CLI footguns#1
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
b158bdf to
925887e
Compare
Make the SDK approachable for developers new to blockchain/Node.js, additively (no existing reference content removed). - add GETTING-STARTED.md: zero-assumptions guide (wallet, faucet, first call, testnet vs mainnet, the create-lightnode-app vs `lightnode add` distinction, troubleshooting table) - README/sdk/create-lightnode-app: link to the guide as an on-ramp - create-lightnode-app: make `cd <folder>` prominent and explain the `Missing script: "dev"` error new users hit when running in the wrong dir - lightnode add: clarify files land in the CURRENT folder, not a new one - fix: install tsx for the node/script template and use `npx tsx` in printed run steps so `tsx <file>.ts` no longer fails with command-not-found
925887e to
2ae449e
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What and why
Makes the toolkit approachable for developers new to blockchain/Node.js. All changes are additive; no existing reference content was removed or reworded.
Added
Fixed (real newcomer footguns)
npm error Missing script: "dev"you get when running in the wrong directory.tsx <file>.tsbut never installed tsx. Now tsx is added to the install list and the printed run steps usenpx tsx, so the command works.Verification