Nodejs is actually a JavaScript execution environment.To create a new file Server.js, enter the following code:var http = require (' http 'var server = Http.createserver (function(req, res) { Res.writehead ($, {' Content-type ': ' Text/plain '}); Res.end (' Hello world\n ');}); Server.listen (1337, ' 127.0.0.1 '); Console.log (' Server running at http://127.0.0.1:1337 ');The console goes to the direct
1. Prepare a folder for the project2. Create a server.js file under the root directory3. The file code is as followsvar http = require ("http");Http.createserver (function (request,response) {Response.writehead (200,{' content-type ': ' Text/plain ');Response.End ("Hello world\n")}). Listen (8080);Console.log ("Server running at http://127.0.0.1:8080/")4. Open the project directory with the command line execute the
Note:
1. To save the hello. js program file as a UTF-8 hello. js file, use notepad.
2. Chinese encoding must be supported in the output webpage.
Res. write ('
Now we use node. js to create a small www server.
Console. log ('hello') console. log ('Hello % s-> % d
This is an example of an official,Create a tinyphp.js file in F-disk, content:var http = require (' http '); Http.createserver (function (req, res) { Res.writehead ($, {' Content-type ': ' Text/plain '}); Res.end (' Hello world\n ');}). Listen (1337, "127.0.0.1"); Console.log (' Server running at http://127.0.0.1:1337/');Run node Tinyphp.js under the F driveThen open browser access: http://127.0.0.1:1337Y
This is the real reason we learn node. js, Server!1, create a new index.js write downvar Myhttp=require (' http '); Myhttp.createserver (function(req,res) {res.writehead (200,{') Content-type ': ' Text/thml '}); Res.write (' ); Res.write (' ); Res.end (2. Open cmd and run node Index.js3. Open the browser input http://
Zhanhailiang Date: 2014-11-23Principle:
Parse the request URL to the corresponding file path;
Determine if the file exists;
If present, read the file content output;
Realize:varPath=Require(' path '),Fs=Require(' FS ');Require(' http ').Createserver(function(Req,Res) { //Parse file path, default to the current directory as the root directory to find files //This can be done by configuring the root value to find files for the relative root directory varFile=Path.Nor
Open service:The code is as follows:varHTTP = require ('http'); Http.createserver (function (request, response) {//Send HTTP Header//HTTP Status value: 200:ok//content Type: Text/plainResponse.writehead ( $, {'Content-type':'Text/plain'}); //Send response data "Hello World"Response.End ('Hello world\n');}). Listen (8888);//The terminal prints the following informationConsole.log ('Server running at http://127.0.0.1:8888/');
express = require (' Express '); ten var router = Express. Router (); One router.get ('/', function(req, res) { res.send ({ ' success ': ' Delete success! ' ( ) ) ; - module.exports = router;This is one of the simplest delete.js files inside the content, when accessing localhost:3000/delete, will enter the above method to execute the logic.Of course, in this case, you can expand some of the methods of deletion, for example:1 function (req, res) {2 res.send ({3 ' success ':
Tags: tab nod exist UNC void dem Creat SQL anotherSee the QueryResult part of the program: /*
* This example demonstrates-to-fetch a single row from a large table
* One by one and get processed by application. It avoids allocation of
* Large memory by the ibm_db and data processing becomes easier.
*
* This example have used Sync methods, but async methods also exist.
*/var Ibmdb = require (".. /")//require ("ibm_db"), conn =NewIbmdb. Database (), CN
Nodejs is a simple chat server.
The implementation code is as follows:
Var net = require ('net'); var chatServer = net. createServer (), clientList = []; chatServer. on ("connection", function (client) {client. name = client. remoteAddress + ":" + client. remotePort; client. write ("Hi! "+ Client. name + "\ n"); clientList. push (client); client. on ("data", function (data) {// send data to the client broadcast (data, client); // clientList [I]. write
---SQL SERVER 2000 Calendar Parent-child relationship tables (binary tree) get all parent nodes and node layer functions for all child nodes---geovin Du tu ju wen--Building a test environmentCreate Table Geovindu([ID] Int,Fatherid Int,[Name] Varchar (10))Insert A Select 1, 0, ' China 'Union All Select 2, 1, ' Guangdong 'Union all Select 3, 1, ' Beijing 'Union all
FCI Two-node cluster, because the network outage between the cluster nodes at night, two nodes are considered another node outage, in the cluster management of each node has seen the other side has been down.Connect to the cluster IP to indicate a problem with the msdb database:Discovery of the msdb database "suspicious"Msdb is damaged, MSSQL error logs and agent
Label:Original: SQL Server uses RowNumber () built-in functions with the over keyword to implement a common paging stored procedure (support for single-or multiple-table node-search-Sets paging)SQL Server uses the RowNumber () built-in function with the over keyword to imple
Please check that the DBTYPE node database type is correct in dnt.config, for example, SQL Server, Access, MYSQL
Note: An unhandled exception occurred during the execution of the current Web request. Check the stack trace for more information about the error and where the error occurred in the code. Exception Details: System.Exception: Check that the DBTYPE
This article mainly introduces several important knowledge points of node. js: The Role of node. js, callback, synchronous and asynchronous code, event loop 1, and the role of node. js,
The meaning of I/O. Move the mouse to see t
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.