Node.js - 실시간 위치 추적 (2)

· 10년 전 · 1631

이제 사용자 위치를 저장할 "Location" 데이터베이스를 생성합니다.

 

mysql> CREATE DATABASE Location;

 

mysql> USE Location; 

 

mysql> CREATE TABLE locations ( 

-> id INT AUTO_INCREMENT PRIMARY KEY,

-> name VARCHAR(50) NOT NULL,

-> latitude DOUBLE NOT NULL,

-> longitude DOUBLE NOT NULL,

-> date DATETIME NOT NULL);

 

 

서버 코드 "app.js" 파일 코드를 작성합니다.

 

// 모듈을 추출합니다.

var fs = require('fs');

var http = require('http');

var express = require('express');

 

// 데이터베이스와 연결합니다.

var client = require('mysql').createConnection({

    user: 'root',

    password: '비밀번호',

    database: 'location'

});

 

// 웹 서버를 생성합니다.

var app = express();

var server = http.createServer(app);

 

// GET - /tracker

app.get('/tracker', function (request, response) {

    // Tracker.html 파일을 제공합니다.

    fs.readFile('Tracker.html', function (error, data) {

        response.send(data.toString());

    });

});

 

// GET - /observer

app.get('/observer', function (request, response) {

    // Observer.html 파일을 제공합니다.

    fs.readFile('Observer.html', function (error, data) {

        response.send(data.toString());

    });

});

 

// GET - /ShowData

app.get('/showdata', function (request, response) {

    // 데이터베이스의 데이터를 제공합니다.

    client.query('SELECT * FROM locations WHERE name=?', [request.param('name')], function (error, data) {

        response.send(data);

    });

});

 

// 웹 서버를 실행합니다.

server.listen(52273, function () {

    console.log('Server Running at http://127.0.0.1:52273');

});

 

// 소켓 서버를 생성 및 실행합니다.

var io = require('socket.io').listen(server);

io.sockets.on('connection', function (socket) {

    // join 이벤트

    socket.on('join', function (data) {

        socket.join(data);

    });

 

    // location 이벤트

    socket.on('location', function (data) {

        // 데이터를 삽입합니다.

        client.query('INSERT INTO locations(name, latitude, longitude, date) VALUES (?, ?, ?, NOW())', [data.name, data.latitude, data.longitude]);

 

        // receive 이벤트를 발생시킵니다.            

        io.sockets.in(data.name).emit('receive', {

            latitude: data.latitude,

            longitude: data.longitude,

            date: Date.now()

        });

    }); 

});


|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

태그 필터 (최대 3개) 전체 개발자 소스 기타 mysql 팁자료실 javascript php linux flash 정규표현식 jquery node.js mobile 웹서버 os 프로그램 강좌 썸네일 이미지관련 도로명주소 그누보드5 기획자 견적서 계약서 기획서 마케팅 제안서 seo 통계 서식 통계자료 퍼블리셔 html css 반응형 웹접근성 퍼블리싱 표준화 반응형웹 홈페이지기초 부트스트랩 angularjs 포럼 스크린리더 센스리더 개발자톡 개발자팁 퍼블리셔톡 퍼블리셔팁 기획자톡 기획자팁 프로그램강좌 퍼블리싱강좌
+
제목 글쓴이 날짜 조회
10년 전 조회 1,654
10년 전 조회 1,690
10년 전 조회 1,688
10년 전 조회 1,645
10년 전 조회 2,101
10년 전 조회 1,637
10년 전 조회 1,588
10년 전 조회 1,844
10년 전 조회 1,633
10년 전 조회 1,665
10년 전 조회 1,522
10년 전 조회 1,790
10년 전 조회 1,611
10년 전 조회 1,495
10년 전 조회 1,620
10년 전 조회 2,252
10년 전 조회 1,593
10년 전 조회 1,568
10년 전 조회 1,665
10년 전 조회 1,708
10년 전 조회 2,176
10년 전 조회 1,766
10년 전 조회 1,624
10년 전 조회 1,518
10년 전 조회 1,554
10년 전 조회 1,654
10년 전 조회 1,606
10년 전 조회 1,661
10년 전 조회 1,574
10년 전 조회 1,710
10년 전 조회 1,563
10년 전 조회 1,553
10년 전 조회 1,499
10년 전 조회 2,164
10년 전 조회 1,663
10년 전 조회 1,568
10년 전 조회 1,567
10년 전 조회 1,583
10년 전 조회 1,571
10년 전 조회 1,556
10년 전 조회 2,071
10년 전 조회 1,520
10년 전 조회 1,563
10년 전 조회 1,469
10년 전 조회 2,055
10년 전 조회 1,643
10년 전 조회 1,641
10년 전 조회 1,690
10년 전 조회 1,599
10년 전 조회 1,632
10년 전 조회 1,529
10년 전 조회 1,450
10년 전 조회 1,568
10년 전 조회 1,458
10년 전 조회 1,823
10년 전 조회 1,520
10년 전 조회 1,535
10년 전 조회 1,515
10년 전 조회 1,534
10년 전 조회 1,611
10년 전 조회 1,500
10년 전 조회 1,536
10년 전 조회 1,724
10년 전 조회 1,525
10년 전 조회 1,627
10년 전 조회 1,604
10년 전 조회 1,595
10년 전 조회 1,749
10년 전 조회 1,606
10년 전 조회 1,607
10년 전 조회 1,586
10년 전 조회 1,692
10년 전 조회 1,598
10년 전 조회 1,562
10년 전 조회 1,563
10년 전 조회 1,588
10년 전 조회 1,629
10년 전 조회 1,570
10년 전 조회 1,767
10년 전 조회 1,911
10년 전 조회 1,845
10년 전 조회 1,595
10년 전 조회 1,595
10년 전 조회 1,545
10년 전 조회 1,546
10년 전 조회 1,645
10년 전 조회 1,560
10년 전 조회 1,522
10년 전 조회 1,572
10년 전 조회 1,916
10년 전 조회 2,378
10년 전 조회 1,949
10년 전 조회 1,769
10년 전 조회 1,609
10년 전 조회 1,586
10년 전 조회 1,609
10년 전 조회 1,572
10년 전 조회 1,580
10년 전 조회 1,586
10년 전 조회 1,759