shopify hydrogen #1852
Answered
by
davidhousedev
annisaabuhamid
asked this question in
Help
-
can anyone help me figure out what shopify hydrogen do? i try to run it return command not found |
Beta Was this translation helpful? Give feedback.
Answered by
davidhousedev
Jul 15, 2022
Replies: 1 comment
-
It sounds like you're getting stuck on how to access commands that are installed within your project's For example:
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
frehner
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It sounds like you're getting stuck on how to access commands that are installed within your project's
node_modules
. You can use eithernpx
oryarn
to run this command.For example:
npm
, you can access your locally-installed package by runningnpx
. For example,npx shopify hydrogen
.yarn
, you can take a small shortcut by runningyarn shopify hydrogen
which will use theshopify
package installed within yournode_modules
directory.For more info, see documentation on
npx
andyarn