Node.js控制台示例项目(一)

举报
清雨小竹 发表于 2022/09/25 02:12:04 2022/09/25
【摘要】 app.js'use strict'; console.log('Hello world>>>>>>>>>>>>>>>>>>>>>>>>>>'); var green = requi...

  
  1. app.js
  2. 'use strict';
  3. console.log('Hello world>>>>>>>>>>>>>>>>>>>>>>>>>>');
  4. var green = require('./hello');
  5. green.hello();
  6. green.hello2();
  7. //>>>>>>>>>>>> test http
  8. /*
  9. var http = require('http');
  10. var server = http.createServer(function (request, response) {
  11. // 将HTTP响应200写入response, 同时设置Content-Type: text/html:
  12. //response.writeHead(200, { 'Content-Type': 'text/html' });
  13. // 将HTTP响应的HTML内容写入response:
  14. response.end('<h1>Hello world!</h1>');
  15. });
  16. server.listen(5000);
  17. */
  18. //>>>>>>>>>>>>>> test express
  19. /*
  20. var express = require('express');
  21. var app = express();
  22. app.get('/', function (req, res) {
  23. res.end("test http web");
  24. });
  25. app.listen(5000, function () {
  26. console.log('http server start');
  27. });
  28. */
  29. //>>>>>>>>>>>>* test koa
  30. /*
  31. var Koa = require('koa');
  32. var app = new Koa();
  33. app.use(async (ctx, next) => {
  34. ctx.response.type = 'text/plain';
  35. if (ctx.request.path === '/test') {
  36. ctx.response.body = 'TEST page';
  37. }
  38. else {
  39. ctx.response.body = "test koa";
  40. }
  41. });
  42. app.listen(5000);
  43. */
  44. //>>>>>>>>>>>>* test koa-router
  45. /*
  46. const Koa = require('koa');
  47. // 注意require('koa-router')返回的是函数:
  48. const router = require('koa-router')();
  49. const app = new Koa();
  50. // add url-route:
  51. router.get('/hello/:name', async (ctx, next) => {
  52. var name = ctx.params.name;
  53. ctx.response.body = `<h1>Hello get, ${name}!</h1>`;
  54. });
  55. router.post('/hello/:name', async (ctx, next) => {
  56. var name = ctx.params.name;
  57. ctx.response.body = `<h1>Hello post, ${name}!</h1>`;
  58. });
  59. router.get('/', async (ctx, next) => {
  60. ctx.response.body = '<h1>Index</h1>';
  61. });
  62. // add router middleware:
  63. app.use(router.routes());
  64. app.listen(5000);
  65. console.log('app started at port 5000...');
  66. */
  67. //>>>>>>>>>>>>>>>>>>>>>> test koa-bodyparser
  68. /*
  69. const Koa = require('koa');
  70. // 注意require('koa-router')返回的是函数:
  71. const bodyParser = require('koa-bodyparser');
  72. const router = require('koa-router')();
  73. const app = new Koa();
  74. // add url-route:
  75. router.post('/hello/', async (ctx, next) => {
  76. var name = ctx.request.body.name || '';
  77. ctx.response.body = 'test body parser name ' + name;
  78. });
  79. // add router middleware:
  80. app.use(bodyParser());
  81. app.use(router.routes());
  82. app.listen(5000);
  83. console.log('app started at port 5000...');
  84. */
  85. console.log('end<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<');

  
  1. //hello.js
  2. 'use strict'
  3. var str = 'hello';
  4. module.exports = {
  5. hello: function () {
  6. console.log('this is test ' + str);
  7. },
  8. hello2: function () {
  9. console.log('this is test222222 ' + str);
  10. }
  11. }


文章来源: zzzili.blog.csdn.net,作者:清雨小竹,版权归原作者所有,如需转载,请联系作者。

原文链接:zzzili.blog.csdn.net/article/details/79305307

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。