zoukankan      html  css  js  c++  java
  • [Tool] Open Multiple Terminal Tabs on npm Start with ttab and npm-run-all

    Often times when developing web applications, you need to open multiple tabs to run different scripts to start the application. This can all be done with one command

    In this lesson, you will learn how to start a project and open multiple terminal tabs with one npm script.

    Valid for macOS users.

    Install:

    npm i -D ttab npm-run-all
      "scripts": {
        "start": "run-s tab:build:js tab:backend open:page",
        "build:js": "echo 'Webpack dev server started...'",
        "backend": "echo 'Backend started...'",
        "tab:build:js": "ttab -t 'Build JS' npm run build:js",
        "tab:backend": "ttab -t 'Java Server' npm run backend"
      },

    When you run 'npm start', it will open two tabs run the FE and BE

  • 相关阅读:
    第九次任务
    第八次任务
    第七次任务
    第六次任务
    第四天半任务
    第四天任务
    第三天任务
    第二天任务
    第一天任务
    第⑩天任务
  • 原文地址:https://www.cnblogs.com/Answer1215/p/9290811.html
Copyright © 2011-2022 走看看