© 2022 Hashnode
June 2022 Hackathon · Compete for $10K in prizesThe countdown has begun!
4 days : 13 hours : 14 mins : 40 secs
As a React developer, using Create React App to start new projects and run them can be a pain. Firstly, it is slow to install all the 140MB dependencies when creating a new app. Next, it uses Webpack …
I believe that ORM is the most important tool for backend development, the tool we spend the most of time working on a feature, the tool we scold the most, always wanting for something better. Here I'm doing a review of 6 popular ORMs to co…
WHAT IS ARDUINO? The Arduino is an open-source easy-to-use hardware and software platform used to build electronics projects. It was designed for artists, designers, and others who want to incorporate…
Just like any other language, JavaScript with the help of the NodeJS runtime provides a REPL interface that can be accessed by running node from the command line without any scripts. REPL is an acrony…
Hooks are a new addition in React 16.8. They let you use state and other React features without writing a class. Hooks are functions that let you “hook into” React features from function components. …
Recently, while working on a tech project, I realized how dependent we are on free libraries, code snippets, and tutorials written by others. Most of the time, people look for freely available resourc…
Strings in Js is simply text wrapped in quotes. You can use double or single quotes, just be consistent. let myName = 'Gayatri'; let myFullName = "Gayatri Kumar"; let friendsName = 'Pabo Shivrav'; In…
Overview Health monitors have been a very welcome introduction to the general market. With so many responsibilities to handle, heading to the hospital when all you need is as simple as a blood pressur…
Any kind of variable, function, array or object that you use while programming in JS falls into one of the following categories. Numbers Operations that can be performed on numbers: //Addition 12+…
PostgreSQL is a powerful, open-source object-relational database system. PostgreSQL language, such as create a database, drop a database, select database, select table, update a record, create a table, delete record, drop table, triggers, f…
HTML stands for Hypertext markup language. It was introduced in year 1990 and since then there have been releases/upgrades with new features and enhancements. HTML5 has been developed considering mobi…
Millions of tweets are sent out everyday, I often wondered how possible it would be to search for Job postings on twitter amidst the Spam that the platform struggles with. I began building Jobtweets some weeks back during my Job search, I …