![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@tunnckocore/execa
Advanced tools
Thin layer on top of `execa` that allows executing multiple commands in parallel or in sequence with control for concurrency
Thin layer on top of
execa
that allows executing multiple commands in parallel or in sequence with control for concurrency
Please consider following this project's author, Charlike Mike Reagent, and :star: the project to show your :heart: and support.
If you have any how-to kind of questions, please read the Contributing Guide and Code of Conduct documents. For bugs reports and feature requests, please create an issue or ping @tunnckoCore at Twitter.
Project is semantically versioned & automatically released from GitHub Actions with Lerna.
Topic | Contact |
---|---|
Any legal or licensing questions, like private or commerical use | |
For any critical problems and security reports | |
Consulting, professional support, personal or team training | |
For any questions about Open Source, partnerships and sponsoring |
(TOC generated by verb using markdown-toc)
This project requires Node.js >=10.13 (see
Support & Release Policy).
Install it using yarn or
npm.
We highly recommend to use Yarn when you
think to contribute to this project.
$ yarn add @tunnckocore/execa
Generated using jest-runner-docs.
Uses execa, { execaCommand }
method. As stated there, think of it as mix
of child_process
's .execFile
and .spawn
. It is pretty similar to the
.shell
method too, but only visually because it does not uses the system's
shell, meaning it does not have access to the system's environment variables.
You also can control concurrency by passing options.concurrency
option. For
example, pass concurrency: 1
to run in series instead of in parallel which is
the default behavior.
function(cmds, options)
cmds
{Array<string>} - a string or array of string commands to
execute in parallel or series[options]
{object} - directly passed to execa and so to
child_process
returns
{Promise} - resolved or rejected promisesIt also can accept array of multiple strings of commands that will be executed in series or in parallel (default).
import { exec } from '@tunnckocore/execa';
// or
// const { exec } = require('@tunnckocore/execa');
async function main() {
await exec('echo "hello world"', { stdio: 'inherit' });
// executes in series (because `concurrency` option is set to `1`)
await exec(
[
'prettier-eslint --write foobar.js',
'eslint --format codeframe foobar.js --fix',
],
{ stdio: 'inherit', preferLocal: true, concurrency: 1 },
);
}
main();
Similar to exec
, but also can access the system's environment variables
from the command.
function(cmds, options)
cmds
{Array<string>} - a commands to execute in parallel or seriesoptions
{object} - directly passed to execa
returns
{Promise} - resolved or rejected promises
import { shell } from '@tunnckocore/execa';
// or
// const { shell } = require('@tunnckocore/execa');
async function main() {
// executes in series
await shell(['echo unicorns', 'echo "foo-$HOME-bar"', 'echo dragons'], {
stdio: 'inherit',
});
// exits with code 3
try {
await shell(['exit 3', 'echo nah']);
} catch (er) {
console.error(er);
// => {
// message: 'Command failed: /bin/sh -c exit 3'
// killed: false,
// code: 3,
// signal: null,
// cmd: '/bin/sh -c exit 3',
// stdout: '',
// stderr: '',
// timedOut: false
// }
}
}
main();
All execa named exports, see its documentation. Think of this as a mix of
child_process.execFile()
and child_process.spawn()
.
function(file, args, options)
file
{string} - executable to runargs
{Array<string>} - arguments / flags to be passed to file
options
{object} - optional options, passed to child_process
's methods
import { execa, execaCommand, execaNode } from '@tunnckocore/execa';
// or
// const { execa } = require('@tunnckocore/execa');
async function main() {
await execa('npm', ['install', '--save-dev', 'react'], { stdio: 'inherit' });
}
main();
Please read the Contributing Guide and Code of Conduct documents for advices.
For bug reports and feature requests, please join our community forum and open a thread there with prefixing the title of the thread with the name of the project if there's no separate channel for it.
Consider reading the Support and Release Policy guide if you are interested in what are the supported Node.js versions and how we proceed. In short, we support latest two even-numbered Node.js release lines.
Become a Partner or Sponsor? :dollar: Check the OpenSource Commision (tier). :tada: You can get your company logo, link & name on this file. It's also rendered on package's page in npmjs.com and yarnpkg.com sites too! :rocket:
Not financial support? Okey! Pull requests, stars and all kind of contributions are always welcome. :sparkles:
This project follows the all-contributors specification. Contributions of any kind are welcome!
Thanks goes to these wonderful people (emoji key), consider showing your support to them:
Charlike Mike Reagent 🚇 💻 📖 🤔 🚧 ⚠️ |
Copyright (c) 2017-present, Charlike Mike Reagent
<opensource@tunnckocore.com>
& contributors.
Released under the MPL-2.0 License.
FAQs
Thin layer on top of `execa` that allows executing multiple commands in parallel or in sequence with control for concurrency
The npm package @tunnckocore/execa receives a total of 0 weekly downloads. As such, @tunnckocore/execa popularity was classified as not popular.
We found that @tunnckocore/execa demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.