We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
npm init 文档有写。create 其实就是 init 的一个别名。 也就是说 npm create xxx 相当于 => npx create-xxx相当于 create-xxx,即会去执行bin下的create-xxx
npm create xxx
npx create-xxx
create-xxx
npm init foo -> npx create-foo npm init @usr/foo -> npx @usr/create-foo npm init @usr -> npx @usr/create
demo可以查看learning_resource/npmcreate,clone到本地后npm link 执行create-dch,npm init dch,npm create dch这3个命令试试
create-dch
npm init dch
npm create dch
The text was updated successfully, but these errors were encountered:
No branches or pull requests
npm init 文档有写。create 其实就是 init 的一个别名。
也就是说
npm create xxx
相当于 =>npx create-xxx
相当于create-xxx
,即会去执行bin下的create-xxxdemo可以查看learning_resource/npmcreate,clone到本地后npm link
执行
create-dch
,npm init dch
,npm create dch
这3个命令试试The text was updated successfully, but these errors were encountered: