পৃষ্ঠাসমূহ

Search Your Article

CS

 

Welcome to GoogleDG – your one-stop destination for free learning resources, guides, and digital tools.

At GoogleDG, we believe that knowledge should be accessible to everyone. Our mission is to provide readers with valuable ebooks, tutorials, and tech-related content that makes learning easier, faster, and more enjoyable.

What We Offer:

  • 📘 Free & Helpful Ebooks – covering education, technology, self-development, and more.

  • 💻 Step-by-Step Tutorials – practical guides on digital tools, apps, and software.

  • 🌐 Tech Updates & Tips – simplified information to keep you informed in the fast-changing digital world.

  • 🎯 Learning Support – resources designed to support students, professionals, and lifelong learners.

    Latest world News 

     

Our Vision

To create a digital knowledge hub where anyone, from beginners to advanced learners, can find trustworthy resources and grow their skills.

Why Choose Us?

✔ Simple explanations of complex topics
✔ 100% free access to resources
✔ Regularly updated content
✔ A community that values knowledge sharing

We are continuously working to expand our content library and provide readers with the most useful and relevant digital learning materials.

📩 If you’d like to connect, share feedback, or suggest topics, feel free to reach us through the Contact page.

Pageviews

Thursday, March 2, 2017

Koa.js - Hello World

So we have set up the development, now it is time to start developing our first app using koa. Create a new file called app.js and type the following in it.
var koa = require('koa');
var app = koa();

app.use(function* (){
    this.body = 'Hello world!';
});

app.listen(3000, function(){
    console.log('Server running on https://localhost:3000')
});
Save the file, go to your terminal and type
$ nodemon app.js
This will start the server. To test this app, open your browser and go to https://localhost:3000 and you should get the message,
Hello world

How this app works?

The first line imports koa in our file, we have access to its API through the variable koa. We use it to create an application and assign it to var app.
app.use(function) - This function is a middleware which gets called whenever our server gets a request. We'll learn more about middlewares in coming chapters. The callback function is a generator which we'll see in the next chapter. The context of this generator is called context in koa. This context is used to access and modify the request and response objects. We are setting the body of this response to be Hello world!.
app.listen(port, function) - This function binds and listens for connections on the specified port. Port is the only required parameter here. The callback function is executed if the app successfully runs.

No comments:

Post a Comment