Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Concurrently integration to readme #2

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,20 @@ For a practical example of integrating EBX with NestJS, you can refer to the fol

Harness the power of EBX to bundle and optimize your Node.js backend applications built with NestJS, ExpressJS or any other.

### Integration with Concurrently

To make EBX run-mode work with [Concurrently](https://www.npmjs.com/package/concurrently) runner, you have to pass `--raw` parameter in concurrently script.

```json
// package.json
{
"scripts": {
//...
"dev": "concurrently --raw 'npm:dev:frontend' 'npm:dev:backend'"
}
}
```

## Conclusion

EBX is a powerful tool that can help you simplify the process of bundling and optimizing JavaScript code for Node.js applications. It is a versatile tool that can be used for both development and production environments.
Expand Down