The JavaScript pipeline operator proposal, which is currently a Stage 1 proposal, would add a new operator to JavaScript. This new operator would would act as syntax sugar to extend and make chained function more readable.
To demonstrate, let’s start with a simple example without the use of the pipeline operator:
Now the same example, but using the proposed pipeline operator:
Or formatted in a more readable way like so:
As you can see, the pipeline operator can really help make the code more clear and readable, and ultimately more maintainable.
With multiple recursive function calls, the innermost function is called first, which means that the order in which the calls are written needs to be from the last function call to the first, which can be a bit of a backwards way to think about and write code. With the pipeline operator, the written order is reversed and the first function call is added first.
As this proposal is still very early stage, you won’t find any support in current browsers. We can make use of Babel to allow us to use it today, and have transpiled code that works in all browsers.
To get started make sure that you installed Node.js on your machine.
Let’s create a new folder and initialize a new project:
In bash !$
means the last argument of the last command.
Now let’s install the Babel dev dependency for our project:
Create a new file called .babelrc
in the project directory:
Copy and paste the following settings into .babelrc
:
Add a start
script into the project’s package.json file, which will run babel
:
Start using Babel with the use of our new start
script:
Don’t stop this script while you’re working, it’s in watch mode so it’ll continue doing its job as you change the file. Instead just open another console tab to run the outputted JavaScript file (pipeline.js
).
And that’s it, we’re now ready to use the pipeline operator in our code! 🎉
Let’s first create some helper functions to work with:
Let’s see how we would use them without the pipeline operator:
The code looks a tad confusing, right? Let’s now look at what it would look like with the pipeline operator:
Run the code with:
As you can see, it’s just as easy to use with function arguments.
It’s just an arrow function. It’s first argument is what we are trying to process, the string 'WORLD'
in our case.
You can even use built-in methods:
I hope that this article was useful for you. Remember that it’s just syntax sugar. It’s up to you to use it or not. If you enjoy this article, subscribe to receive more cool articles.
Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.
While we believe that this content benefits our community, we have not yet thoroughly reviewed it. If you have any suggestions for improvements, please let us know by clicking the “report an issue“ button at the bottom of the tutorial.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!