forked from idflood/ThreeNodes.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_server.coffee
179 lines (160 loc) · 5.9 KB
/
_server.coffee
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
sys = require("util")
fs = require("fs")
path = require("path")
url = require("url")
exec = require("child_process").exec
watch = require("watch")
express = require("express")
coffee = require("coffee-script")
stylus = require("stylus")
jade = require("jade")
nib = require("nib")
wrench = require("wrench")
requirejs = require('requirejs')
is_build = (process.argv[2] == "build")
# Require the external coffeescript and jade to build the static_output
# todo: also remove the external dependencies
if is_build
delay = (ms, func) -> setTimeout func, ms
exec_and_log = (command, on_complete) ->
console.log "executing command: " + command
exec command, (err, stdout, stderr) ->
if err
console.log "error: " + err
console.log stdout + stderr
delay 100, () => on_complete()
compile_jade = (filename) ->
html = jade.compile(fs.readFileSync('views/' + filename + ".jade", 'utf8'), {pretty: true})
if html
fs.writeFileSync('output_static/' + filename + ".html", html())
else
console.log "Can't compile: views/" + filename + ".jade"
console.log "Building..."
# Remove previous build
wrench.rmdirSyncRecursive('output_static', true)
# Create root directory
wrench.mkdirSyncRecursive('output_static', parseInt('777', 8))
# Copy public assets
wrench.copyDirSyncRecursive('public/assets', 'output_static/assets')
wrench.copyDirSyncRecursive('public/scripts', 'output_static/scripts')
wrench.copyDirSyncRecursive('public/examples', 'output_static/examples')
wrench.copyDirSyncRecursive('views/templates', 'output_static/scripts/templates')
# Copy the development css to the output_static dir
# todo: use the node.js stylus module with compress option
wrench.copyDirSyncRecursive('public/stylesheets', 'output_static/stylesheets')
# Compile jade to html
console.log "Compiling jade files..."
compile_jade("index")
compile_jade("test")
compile_jade("speedtest")
compile_jade("code_export_example")
#exec_and_log 'jade views/ --out output_static/', () ->
# Compile coffeescript to js
console.log "Compiling coffeescript files..."
exec_and_log 'coffee -b -o output_static/scripts/ -c src/scripts/', () ->
console.log "Starting to optimize the javascripts..."
# optimize the js
config =
baseUrl: 'output_static/scripts/'
paths:
jQuery: 'libs/jquery-1.7.2'
jQueryUi: 'libs/jquery-ui/js/jquery-ui-1.9m6'
Underscore: 'libs/underscore'
Backbone: 'libs/backbone'
use: "libs/require/use"
text: "libs/require/text"
order: "libs/require/order"
use:
'Underscore':
attach: "_"
'Backbone':
deps: ['use!Underscore', 'jQuery']
attach: "Backbone"
'jQueryUi':
deps: ['jQuery']
attach: 'jQuery'
# jQuery: "libs/jquery-1.6.4.min"
# Underscore: "libs/underscore-min"
# Backbone: "libs/backbone"
#modules: [{exclude: ["jQuery"]}]
optimize: 'none'
name: 'threenodes/App'
out: 'output_static/scripts/threenodes/App.js'
#name: 'boot'
#out: 'output_static/scripts/boot-built.js'
requirejs.optimize config, (buildResponse) ->
console.log "Optimization complete!"
console.log "ThreeNodes.js has successfuly been compiled to /output_static !"
process.exit()
else
# development environment
# Setup express server
app = express.createServer()
port = process.env.PORT || 3000
app.use app.router
app.use express.methodOverride()
app.use express.bodyParser()
app.set "views", __dirname + "/views"
app.set "view engine", "jade"
# Configure the stylus middleware (.styl -> .css)
app.use stylus.middleware(
src: __dirname + "/src"
dest: __dirname + "/public"
compile: (str, path) ->
stylus(str).set("filename", path).set("warn", true).set("compress", false).set("paths", [ require("stylus-blueprint") ]).use nib()
)
# Configure static assets
app.use express.static(__dirname + "/public")
# Serve on the fly compiled js or existing js if there is no .coffee
app.get "/scripts/*.js", (req, res) ->
file = req.params[0]
compile_coffee = () ->
res.header("Content-Type", "application/x-javascript")
cs = fs.readFileSync("src/scripts/" + file + ".coffee", "utf8")
try
js = coffee.compile(cs, {bare: true})
res.send(js)
catch compileErr
console.log "##################################"
console.log "Error in file: " + file + ".coffee"
console.log compileErr
return compileErr
return_static = () ->
path.exists "public/scripts/" + file + ".js", (exists) ->
if exists
res.header("Content-Type", "application/x-javascript")
cs = fs.readFileSync("public/scripts/" + file + ".js", "utf8")
res.send(cs)
else
res.send("Cannot GET " + "/public/scripts/" + file + ".js", 404)
path.exists "src/scripts/" + file + ".coffee", (exists) ->
if exists
compile_coffee()
else
return_static()
# Pseudo link for js templates (src/html/templates -> assets/js/templates/)
app.get "/scripts/templates/*", (req, res) ->
file = req.params[0]
path.exists "views/templates/" + file, (exists) ->
if exists
res.header("Content-Type", "text/html")
cs = fs.readFileSync("views/templates/" + file, "utf8")
res.send(cs)
else
res.send("Cannot GET " + "/scripts/templates/" + file, 404)
# Setup html routes
app.get "/", (req, res) ->
res.render "index",
layout: false
app.get "/code_export_example", (req, res) ->
res.render "code_export_example",
layout: false
app.get "/speedtest", (req, res) ->
res.render "speedtest",
layout: false
app.get "/test", (req, res) ->
res.render "test",
layout: false
# Start the server
app.listen port
console.log "ready: http://localhost:#{port}/"