npm run dev ist der Standard für „meine Website lokal ausführen“, aber wie funktioniert es? Wie können wir seine Funktionalität erweitern? In diesem Beitrag schauen wir uns Folgendes an:
Als motivierendes Beispiel finden Sie hier einige Skripte, die in der Beispiel-App „convex-helpers“ definiert sind. Wir besprechen, was die einzelnen Teile bewirken
"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 führt Befehle aus, die in Ihrer package.json im Arbeitsbereich Ihres Projekts definiert sind. Diese Befehle sind oft vorkonfiguriert, wenn Sie Ihr Repo über einen Befehl wie npm create vite@latest mit Befehlen für:
startenHier ist ein einfaches Beispiel von Next.js:
// in package.json { // ... "scripts": { "dev": "next dev", "build": "next build", "start": "next start", "lint": "next lint" }, //...
Hier können Sie npm run dev oder npm run lint usw. ausführen.
Mehr über npm run erfahren Sie in den Dokumenten.
Es ist eine berechtigte Frage, warum man Befehle, die ohnehin schon so einfach sind, in Paketskripte integrieren sollte. Warum nicht einfach Jest oder Vite oder Next Build anrufen? Es gibt ein paar gute Gründe:
Ja! Selbst wenn Sie Ihre Abhängigkeiten mit einem anderen Paketmanager installieren, können Sie Ihre Paketskripte weiterhin mit npm ausführen.
yarn # similar to `npm install` npm run dev # still works!
Sie müssen sich nicht daran erinnern, dass „npm run dev“ auf „garn dev“ (oder „garn run dev“) abgebildet wird. Das Gleiche gilt für npx: npx convex dev funktioniert unabhängig davon, welchen Paketmanager Sie zur Installation verwendet haben.
Es gibt ein paar Pakete, mit denen Sie Befehle gleichzeitig ausführen können:4
Wir schauen uns hier nur npm-run-all an. Betrachten Sie unser Beispiel:
"scripts": { "dev": "npm-run-all --parallel dev:backend dev:frontend", "dev:backend": "convex dev", "dev:frontend": "vite", },
Dies definiert drei Skripte.
Beide Ausgaben werden gestreamt und durch Drücken von Strg-C werden beide Skripte unterbrochen.
Sie können Befehle angeben, die vor (pre) oder nach (post) einem anderen Befehl (z. B. X) ausgeführt werden sollen, indem Sie Ihren Befehl preX oder postX nennen. Im Beispiel:
"scripts": { "dev": "npm-run-all --parallel dev:backend dev:frontend", "dev:backend": "convex dev", "dev:frontend": "vite", "predev": "convex dev --until-success", },
Dadurch wird convex dev --until-success vor dem „dev“-Befehl von npm-run-all --parallel dev:backend dev:frontend ausgeführt.
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. ↩
Wenn Sie wirklich möchten, können Sie npm exec vitest, kurz npx vitest, ./npm_modules/.bin/vitest direkt ausführen oder .npm_modules/.bin zu Ihrem PATH hinzufügen. ↩
Manche Leute verwenden ein bloßes &, um eine Aufgabe im Hintergrund auszuführen, aber das wird unter Windows nicht unterstützt, und das Unterbrechen eines Befehls führt nicht unbedingt zum Abbruch des anderen. ↩
Das obige ist der detaillierte Inhalt vonLaden Sie „npm run dev' mit package.json-Skripten auf. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!