- Koa.js - Resources
- Koa.js - Scaffolding
- Koa.js - Logging
- Koa.js - RESTful APIs
- Koa.js - Database
- Koa.js - Caching
- Koa.js - Compression
- Koa.js - Authentication
- Koa.js - Sessions
- Koa.js - Cookies
- Koa.js - Static Files
- Koa.js - File Uploading
- Koa.js - Form Data
- Koa.js - Templating
- Koa.js - Cascading
- Koa.js - Error Handling
- Koa.js - Redirects
- Koa.js - Response Object
- Koa.js - Request Object
- Koa.js - HTTP Methods
- Koa.js - URL Building
- Koa.js - Routing
- Koa.js - Generators
- Koa.js - Hello World
- Koa.js - Environment
- Koa.js - Overview
- Koa.js - Home
Koa.js Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Koa.js - Hello World
Once we have set up the development, 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 = new koa(); app.use(function* (){ this.body = Hello world! ; }); app.psten(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 receive the following message.
How This App Works?
The first pne imports Koa in our file. We have access to its API through the variable Koa. We use it to create an apppcation 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 middleware in the subsequent 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.psten(port, function) − This function binds and pstens for connections on the specified port. Port is the only required parameter here. The callback function is executed, if the app runs successfully.
Advertisements