Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Hold on, we're currently generating a fresh version of this report
Generated on Apr 28, 2024 via pnpm

concurrently 8.2.2

Run commands concurrently
Package summary
Share
2
issues
1
critical severity
license
1
1
moderate severity
meta
1
5
licenses
23
MIT
4
ISC
1
Apache-2.0
2
other licenses
N/A
1
0BSD
1
Package created
7 Feb 2015
Version published
19 Oct 2023
Maintainers
2
Total deps
30
Direct deps
9
License
MIT

Issues

2

1 critical severity issue

critical
Recommendation: Check the package code and files for license information
via: spawn-command@0.0.2
Collapse
Expand

1 moderate severity issue

moderate
via: spawn-command@0.0.2
Collapse
Expand

Licenses

MIT License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
Cannot
hold-liable
Must
include-copyright
include-license
23 Packages, Including:
@babel/runtime@7.24.4
ansi-regex@5.0.1
ansi-styles@4.3.0
chalk@4.1.2
color-convert@2.0.1
color-name@1.1.4
concurrently@8.2.2
date-fns@2.30.0
emoji-regex@8.0.0
escalade@3.1.2
has-flag@4.0.0
is-fullwidth-code-point@3.0.0
lodash@4.17.21
regenerator-runtime@0.14.1
require-directory@2.1.1
shell-quote@1.8.1
string-width@4.2.3
strip-ansi@6.0.1
supports-color@7.2.0
supports-color@8.1.1
tree-kill@1.2.2
wrap-ansi@7.0.0
yargs@17.7.2

ISC License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
Cannot
hold-liable
Must
include-copyright
include-license
4 Packages, Including:
cliui@8.0.1
get-caller-file@2.0.5
y18n@5.0.8
yargs-parser@21.1.1

Apache License 2.0

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
use-patent-claims
place-warranty
Cannot
hold-liable
use-trademark
Must
include-copyright
include-license
state-changes
include-notice
1 Packages, Including:
rxjs@7.8.1

N/A

N/A
1 Packages, Including:
spawn-command@0.0.2

BSD Zero Clause License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
include-copyright
include-license
include-original
Cannot
hold-liable
Must
1 Packages, Including:
tslib@2.6.2
Disclaimer

This deed highlights only some of the key features and terms of the actual license. It is not a license and has no legal value. You should carefully review all of the terms and conditions of the actual license before using the licensed material.

Sandworm is not a law firm and does not provide legal services. Distributing, displaying, or linking to this deed or the license that it summarizes does not create a lawyer-client or any other relationship.

Direct Dependencies

9
All Dependencies CSV
β“˜ This is a list of concurrently 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
chalk4.1.211.31 kBMIT
prod
date-fns2.30.0682.42 kBMIT
prod
lodash4.17.21311.49 kBMIT
prod
rxjs7.8.1734.42 kBApache-2.0
prod
shell-quote1.8.115.23 kBMIT
prod
spawn-command0.0.22.17 kBUNKNOWN
prod
1
1
supports-color8.1.13.64 kBMIT
prod
tree-kill1.2.23.17 kBMIT
prod
yargs17.7.264.15 kBMIT
prod

Visualizations

Frequently Asked Questions

What does concurrently do?

Concurrently is a powerful utility package for JavaScript that allows users to run multiple commands simultaneously. The name "concurrently" succinctly encapsulates its core functionality. The package is compatible with different operating systems, including Windows. This tool makes parallel task execution straightforward; tasks run simultaneously, and their output is easy to follow thanks to applied prefixes. A significant feature is the --kill-others switch, which terminates all commands if one of them fails, thus ensuring that your workflow does not continue with unsuccessful operations.

How do you use concurrently?

To utilize the Concurrently package, first, it must be installed. This JavaScript tool can be added globally or locally to your JavaScript project. For a global installation, use the command npm i -g concurrently if you're using npm or yarn global add concurrently if you're using Yarn. For a local installation, the commands are npm i -D concurrently or yarn add -D concurrently, respectively.

Once installed, you can begin running commands concurrently. Always enclose separate commands in quotes to ensure proper execution. For example, concurrently "command1 arg" "command2 arg". If using Concurrently in the scripts section of your package.json, escape the quotes, such as "start": "concurrently \"command1 arg\" \"command2 arg\"".

Here are a few more examples:

  • Running npm run commands concurrently:

     concurrently "npm:watch-js" "npm:watch-css" "npm:watch-node"
    
  • And a scenario where commands support wildcards:

    concurrently "npm:watch-*"
    

Where are the concurrently docs?

The built-in documentation for Concurrently can be found on its GitHub page (https://github.com/open-cli-tools/concurrently). This extensive resource includes information on installation, usage (with examples), command line options parameters, programmable API documentation, and more. Reviewing these guides should provide a comprehensive understanding of how to effectively use Concurrently.