ホームページ >ウェブフロントエンド >jsチュートリアル >package.json スクリプトで「npm run dev」をスーパーチャージする
npm run dev は「Web サイトをローカルで実行する」ための標準ですが、どのように機能するのでしょうか?どうすればその機能を拡張できるでしょうか?この投稿では次のことを見ていきます:
やる気を起こさせる例として、convex-helpers サンプル アプリで定義されているスクリプトをいくつか示します。各部分の機能について説明します
"scripts": { "dev": "npm-run-all --parallel dev:backend dev:frontend", "build": "tsc && vite build", "dev:backend": "convex dev", "dev:frontend": "vite", "predev": "convex dev --until-success", "test": "vitest" },
npm run は、プロジェクトのワークスペースの package.json で定義されているコマンドを実行します。これらのコマンドは、次のコマンドを含む npm create vite@latest のようなコマンドからリポジトリを開始するときに、次のコマンドが含まれることがよくあります。
Next.js の基本的な例を次に示します。
// in package.json { // ... "scripts": { "dev": "next dev", "build": "next build", "start": "next start", "lint": "next lint" }, //...
ここで npm run dev や npm run lint などを実行できます。
npm run について詳しくは、ドキュメントをご覧ください。
なぜすでに非常に単純なコマンドをパッケージ スクリプトに組み込む必要があるのかという疑問は当然です。 jest や vite、あるいは next build を呼び出してみてはいかがでしょうか?正当な理由がいくつかあります:
はい!別のパッケージ マネージャーを使用して依存関係をインストールした場合でも、npm を使用してパッケージ スクリプトを実行できます。
yarn # similar to `npm install` npm run dev # still works!
npm run dev がyarn dev (またはyarn run dev) にマップされることを覚えておく必要はありません。同じことが npx にも当てはまります。npx convex dev は、インストールに使用したパッケージ マネージャーに関係なく機能します。
コマンドを同時に実行するために使用できるパッケージがいくつかあります:4
ここでは npm-run-all についてのみ見ていきます。私たちの例を考えてみましょう:
"scripts": { "dev": "npm-run-all --parallel dev:backend dev:frontend", "dev:backend": "convex dev", "dev:frontend": "vite", },
これは 3 つのスクリプトを定義します。
両方の出力はストリーミング出力され、Ctrl-C を押すと両方のスクリプトが中断されます。
コマンドに preX または postX という名前を付けることで、別のコマンド (X など) の前 (pre) または後 (post) に実行するコマンドを指定できます。例では:
"scripts": { "dev": "npm-run-all --parallel dev:backend dev:frontend", "dev:backend": "convex dev", "dev:frontend": "vite", "predev": "convex dev --until-success", },
これにより、npm-run-all --Parallel dev:backend dev:frontend の「dev」コマンドの前に、convex dev --until-success が実行されます。
For those used to shell scripting, you can run two commands in sequence if the previous one succeeds with commandA && commandB. This works on both Windows and Unix (mac / linux).
However, there's a couple advantages to just using pre-scripts:
For Convex, when you first run npx convex dev (or npm run dev with the above scripts), it will ask you to log in if you aren't already, and ask you to set up your project if one isn't already set up. This is great, but interactive commands that update the output text don't work well when the output is being streamed by multiple commands at once. This is the motivation for running npx convex dev --until-success before npx convex dev.
If you change your "predev" command for Convex to include --run it will run a server-side function before your frontend has started.
"scripts": { //... "predev": "convex dev --until-success --run init", //... },
The --run init command will run a function that is the default export in convex/init.ts. You could also have run --run myFolder/myModule:myFunction. See docs on naming here. See this post on seeding data but the gist is that you can define an internalMutation that checks if the database is empty, and if so inserts a collection of records for testing / setup purposes.
If you use TypeScript, you can run a type check / compile your typescript files with a bare tsc. If your tsconfig.json is configured to emit types, it will write out the types. If not, it will just validate the types. This is great to do as part of the build, so you don't build anything that has type errors. This is why the above example did:
"build": "tsc && vite build",
If you want to pass arguments to a command, for instance passing arguments to your testing command to specify what test to run, you can pass them after a -- to separate the command from the argument. Technically you don't need -- if your arguments are positional instead of --prefixed, but it doesn't hurt to always do it in case you forget which to do it for.
npm run test -- --grep="pattern"
We looked at some ways of using package.json scripts to simplify our workflows. Who knew how much power could rest behind a simple npm run dev? Looking at our original example:
"scripts": { "dev": "npm-run-all --parallel dev:backend dev:frontend", "build": "tsc && vite build", "dev:backend": "convex dev", "dev:frontend": "vite", "predev": "convex dev --until-success", "test": "vitest" },
The way your shell finds which command to run when you type npm is to check the shell's PATH environment variable (on unix machines anyways). You can see your own with echo "$PATH". It checks all the places specified in $PATH and uses the first one. ↩
Technically you can override & specify where npm installs binaries. ↩
本当に必要な場合は、npm exec vitest、略して npx vitest、./npm_modules/.bin/vitest を直接実行するか、.npm_modules/.bin を PATH に追加します。 ↩
バックグラウンドで 1 つのタスクを実行するために、裸の & を使用する人もいますが、これは Windows ではサポートされておらず、一方のコマンドを中断しても、必ずしも他方のコマンドが強制終了されるわけではありません。 ↩
以上がpackage.json スクリプトで「npm run dev」をスーパーチャージするの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。