My first bundle with Webpack 4


Webpack is a open-source bundler for web assets like CSS or JavaScript files To install Webpack you will need NPM to be installed on your computer or any similar package manager like Yarn. Open a command line and go to the root directory of your project, then run C:\>xampp\htdocs\webpack-project>npm install webpack –save-dev   Proceed to […]

What is Node.js?


Node.js is a Runtime Enviroment for executing JavaScript code outside the browser Node.js is Asynchronous by default. Which means Node.js can handel several requests at the same time When naming classes in Node.js the first letter of every word in the class name should be uppercase e.g. EventEmmitter. This convention is called Pascal Case (PascalCase) […]