JavaScript JavaScript: how to hide the option element in mobile browsers November 1, 2020 In mobile browsers, hiding an option element requires JavaScript. Read more
Node.js Node.js: create a REST API without ExpressJS October 26, 2020 In this article we will see how to implement a simple REST API without using ExpressJS to demonstrate how impractical this approach is. Read more
Node.js Node.js: account activation system in ExpressJS October 2, 2020 In this article we will see how to implement an account activation system in ExpressJS. Read more
Node.js Node.js: two-factor authentication in ExpressJS September 27, 2020 In this article we will see how to implement two-factor authentication in Node.js with ExpressJS. Read more
Node.js Create an authentication middleware in ExpressJS September 15, 2020 In ExpressJS we can create middleware to check if a user is authenticated. Read more
Node.js Checkout with Stripe in ExpressJS September 15, 2020 The Stripe checkout process can be implemented in ExpressJS using Stripe's official NPM module. Read more
Node.js Error handling in ExpressJS with the default middleware September 15, 2020 ExpressJS has specific middleware for handling errors. Read more
Node.js File download with streams in ExpressJS September 15, 2020 To increase the performance of our application in ExpressJS when we need to implement file downloads, we can use the Node.js streams. Read more
Node.js Server-side data validation in ExpressJS September 15, 2020 ExpressJS can rely on a specific NPM module to perform server-side data validation. Read more
Node.js CSRF protection in ExpressJS September 15, 2020 We can protect ExpressJS against CSRF attacks using a specific NPM module. Read more