The steps below contain everything a first time developer needs to get the Streamability project running locally.
- Docker Desktop
- Node v18
- Git
This project is very open to contributions! If you have a feature request, or bug report, please open an issue with the applicable tag. If you would like to simply create a feature, fork the repository and add in your changes. Then submit a pull request which will be reviewed and eventually merged if it meets all contribution requirements.
Regular expressions are a powerful tool in coding that can be used to find patterns in strings of text without needing much more than a single line of code. While the syntax may seem foreign at first, after some practice regular expressions will be an indispensible tool for every coder. In this tutorial I will explain how regular expressions work using a simple example.
For this tutorial we will be using the regular expression below that will match with any valid email address.
/^([a-z0-9_\.-]+)@([\da-z\.-]+)\.([a-z\.]{2,6})$/