아

node.js + CoffeeScript + Socket.IO + jQuery Mobile

· 2012-03-22 (목) 15:20:50 · 4603 · 1
서버/클라이언트 스크립트 코드 합쳐서 100줄이 안 되는 간단한 채팅 프로그램입니다.

npm install
npm start


<<< package.json >>>
{
    "name": "mobile_chat",
    "version": "1.0.0",
    "description": "Mobile chatting",
    "main": "./app.js",
    "dependencies": {
        "express": ">= 2.5",
        "socket.io": ">= 0.9.2"
    },
    "scripts": {
        "start": "forever start -c coffee app.coffee",
        "stop": "forever stop -c coffee app.coffee"
    }
}


<<< app.coffee >>>
express = require 'express'

app = express.createServer()

app.configure ->
  app.use express.static(__dirname + '/public')

app.get '/', (req, res) ->
  res.sendfile(__dirname + '/views/index.html')

io = require('socket.io').listen(app)

io.sockets.on 'connection', (socket) ->
  console.log '* CONNECT'

  socket.on 'enter', (data) ->
    username = data.username.trim()
    if username
      console.log "* ENTER: #{username}"
      socket.username = username
      socket.emit 'enter'
      io.sockets.emit 'talk',
        message: "[ENTER] #{username}"

  socket.on 'leave', (data) ->
    console.log "* LEAVE: #{socket.username}"
    socket.broadcast.emit 'talk',
      message: "[LEAVE] #{socket.username}"
    delete socket.username

  socket.on 'talk', (data) ->
    console.log "* TALK: #{data.message}"
    io.sockets.emit 'talk',
      message: "#{socket.username}: #{data.message}"

  socket.on 'disconnect', (data) ->
    console.log "* DISCONNECT: #{socket?.username}"
    if socket.username
      socket.broadcast.emit 'talk',
        message: "[DISCONNECT] #{socket.username}"

app.listen 3000
console.log "Express server listening on port #{app.address().port}"


<<< views/index.html >>>
<!DOCTYPE html>
<html>
<head>
<title>Chat</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
<meta charset="utf-8">
<link href="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.css" rel="stylesheet" type="text/css" />
<link href="/css/stylesheet.less" rel="stylesheet" type="text/less" />
<script src="http://lesscss.org/js/less.js" type="text/javascript"></script>
<script src="http://jashkenas.github.com/coffee-script/extras/coffee-script.js" type="text/javascript"></script>
<script src="/socket.io/socket.io.js" type="text/javascript"></script>
<script src="http://code.jquery.com/jquery-1.7.1.js" type="text/javascript"></script>
<script src="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.js" type="text/javascript"></script>
<script src="/js/application.coffee" type="text/coffeescript"></script>
</head>
<body>
<section id="loading" data-role="page">
Loading...
</section>
<section id="home" data-role="page">
<header data-role="header">
<h1>Chat</h1>
</header>
<div data-role="content">
<p>Welcome!</p>
<form>
<input type="text" name="username" placeholder="Username" />
<input type="submit" value="Enter" />
</form>
</div>
</section>
<section id="chat" data-role="page">
<header data-role="header">
<a href="#home" data-role="button" data-icon="arrow-l" data-direction="reverse">Back</a>
<h1>Chat room</h1>
</header>
<div data-role="content">
<div id="chat-area">
----
</div>
<form>
<input type="text" name="message" placeholder="Input here" />
<input type="submit" value="Send" />
</form>
</div>
</section>
</body>
</html>


<<< public/css/stylesheet.less >>>
#chat-area {
height: 200px;
overflow-y: scroll;
word-wrap: break-word;
}


<<< public/js/application.coffee >>>
$ ->
  socket = io.connect('http://localhost')

  socket.on 'disconnect', (data) ->
    $.mobile.changePage '#home',
      transition: 'flip'

  socket.on 'enter', (data) ->
    $('#chat-area').text('')
    $.mobile.changePage '#chat',
      transition: 'flip'

  socket.on 'talk', (data) ->
    message = $('<p></p>').text(data.message)
    $('#chat-area').append(message)
      .scrollTop($('#chat-area').prop('scrollHeight'))

  $('#home').on 'submit', 'form', ->
    socket.emit 'enter',
      username: $('#home').find('input[name=username]').val()
    false

  $('#chat').on 'submit', 'form', ->
    socket.emit 'talk',
      message: $('#chat').find('input[name=message]').val()
    this.reset()
    false

  $('#chat').on 'click', 'a[href=#home]', ->
    socket.emit 'leave'

  $.mobile.changePage '#home',
    transition: 'pop'



|

댓글 1개

좋은 정보 고맙습니다.
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

8,188건
+
제목 글쓴이 날짜 조회
12-06-05 조회 3,122
12-06-04 조회 3,157
12-06-02 조회 3,065
12-06-02 조회 3,800
12-06-01 조회 3,535
12-05-25 조회 3,516
12-05-25 조회 3,030
12-05-21 조회 3,449
12-05-19 조회 2,784
12-05-18 조회 3,202
12-05-16 조회 3,257
12-05-11 조회 2,809
12-05-07 조회 2,868
12-05-05 조회 3,088
12-05-05 조회 2,988
12-05-05 조회 2,879
12-05-04 조회 3,932
12-05-03 조회 3,040
12-04-30 조회 3,056
12-04-26 조회 3,981
12-04-25 조회 2,798
12-04-23 조회 2,887
12-04-23 조회 2,830
12-04-20 조회 4,233
12-04-20 조회 3,187
12-04-18 조회 2,786
12-04-17 조회 3,458
12-04-17 조회 2,788
12-04-17 조회 3,284
12-04-16 조회 2,741
12-04-16 조회 3,034
12-04-13 조회 2,765
12-04-06 조회 3,507
12-04-05 조회 2,891
12-04-03 조회 3,145
12-04-03 조회 2,782
12-03-30 조회 2,768
12-03-30 조회 3,234
12-03-29 조회 3,793
12-03-27 조회 2,927
12-03-26 조회 4,009
12-03-24 조회 6,255
12-03-24 조회 3,759
12-03-23 조회 2,909
12-03-22 조회 3,141
12-03-22 조회 3,420
12-03-22 조회 3,607
12-03-22 조회 4,960
12-03-21 조회 3,062
12-03-21 조회 2,761
12-03-21 조회 4,778
12-03-20 조회 5,539
12-03-20 조회 2,724
12-03-17 조회 3,235
12-03-16 조회 3,268
12-03-15 조회 2,649
12-03-14 조회 2,815
12-03-13 조회 2,861
12-03-12 조회 3,906
12-03-09 조회 2,966
12-03-09 조회 3,901
12-03-07 조회 2,787
12-03-07 조회 2,952
12-03-07 조회 2,632
12-03-02 조회 2,995
12-03-02 조회 3,250
12-03-01 조회 5,034
12-02-29 조회 3,832
12-02-27 조회 4,224
12-02-27 조회 3,114
12-02-26 조회 2,846
12-02-26 조회 5,044
12-02-25 조회 2,590
12-02-23 조회 2,915
12-02-23 조회 2,680
12-02-22 조회 3,765
12-02-21 조회 2,793
12-02-20 조회 3,018
12-02-20 조회 2,862
12-02-20 조회 5,564
12-02-20 조회 3,473
12-02-19 조회 3,235
12-02-18 조회 2,963
12-02-17 조회 3,457
12-02-15 조회 3,010
12-02-14 조회 2,913
12-02-11 조회 2,885
12-02-09 조회 6,321
12-02-09 조회 3,005
12-02-06 조회 2,868
12-02-05 조회 2,881
12-02-04 조회 6,630
12-02-02 조회 5,268
12-01-31 조회 2,785
12-01-30 조회 2,723
12-01-30 조회 2,889
12-01-29 조회 3,100
12-01-27 조회 2,775
12-01-26 조회 2,825
12-01-25 조회 2,734