web-dev-qa-db-ja.com

vuejsの「npm run serve」と「npm run dev」の違い

違いは何ですか npm run serveおよびnpm run dev vuejs内。 npm run serveコマンドを使用してプロジェクトを実行する理由

10
Codey

npm run serveは基本的に、「 npm お願いしますrun私が名前serveinpackage.json "同じことがnpm run devでも発生します。

これを考えると、コマンドはまったく同じこと、同じこと、または非常に異なることを実行できます。通常、これらはlocalhostで開発サーバーを実行するための省略形ですが、これは規則ではなく、規則にすぎません。

したがって、package.jsonファイルをチェックインして、

"scripts": {
    "serve": "[list of commands here]",
    "dev": "[list of commands here]"
},
15
muka.gergely