MLH fellowship is a program run by Major League Hacking. It helps students to contribute to open-source by providing a mentor. Fellows are in regular contact with Maintainers. A small education stipend is also provided.
5 posts tagged with "nodejs"
View All TagsAll in one guide for creating a killer API with Strapi
This article was originally published here​
CMS has been around for quite some time. CMS refers to the content management system. Strapi is a headless CMS for Node.js. Strapi provides GUI for creating different content types and user management baked in the platform. Strapi supports both Restful API and GraphQL. Strapi supports both NoSQL and SQL databases. Changing the database is as simple as changing environment variables.
Rust and Node.js: A match made in heaven
Table of Contents​
- Available Methods
- Native Addons
- Setting Of Project
- A deep dive in Napi
- Conclusion
Scraping with NodeJS and Cheerio
Everybody says that python is best for scraping but I always wonder why we don't use NodeJs for Scraping?
The answer is clear scraping is CPU intensive task since NodeJs is single threaded so scraping blocks the main thread. I have one solution for the problem worker threads. We would scrap the IMDB website for the data.
Our goal is to extract all the data from this page. We would scrap all the details of the tv show, all awards won by the tv show, the cast of the tv show, episodes, seasons and much more.
The data provided from scraping is way more than provided by our script and would be more than provided by any third-party API.
A Practical Guide for JWT Authentication Using Node.js and Express
Traditional authentication strategy makes use of sessions and cookies, but scaling these solutions is very difficult — as some kind of state is maintained by the server. JWT, on the other hand, provides a stateless solution for authentication, and stateless applications are pretty easy to scale.