Your browser does not support JavaScript! Jaag developer | Develop for Developers Skip to main content

Posts

How to get Project ideas?

Getting a new project idea is a tragedy faced by students of every level. Most of the students at the school, college and university have to cope up with this tragedy. Whether it is a course project or a project showcase competition, an innovative idea is something that leads you to win. But how to get such an idea? An idea that creates value, compete others and win the applause. In this post, we will be highlighting the strategies to get project ideas. This post will help students of all areas. How to get Project Ideas? Surround yourself with like-minded people, who have similar interests as yours. Attend various seminars and workshops. Participate in hackathons , competitions and project exhibitions. Observe projects of others, take short interview of participants like how did they get the idea, how did they make it, etc. Look at final year projects of your seniors. Keep an eye on current projects of big companies. Get in touch with the companies on thei...

Basic Concepts of Node.js

If you're going to become a full stack or backend developer, then Node.js is the framework you must learn. In this article, I will share some basic concepts of Node.js in simple words. What is Node.js ? Node.js is a server-side platform . It is built on Chrome's JavaScript runtime. It is used for building fast and scalable network applications. Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient, perfect for data-intensive real-time applications that run across distributed devices. Basic Concepts of Node.js Modules Every module has a default export function call, module.exports = {} , we can include functions or properties inside curly braces for export. We can get rid of implicit declarations. When we export a user-defined module, we use this syntax: require(' ./ moduleName'), we include ' ./ ' Shared State of Modules When a module is imported into other modules, a single copy of the module is s...