Skip to content

Commit 27c3ff7

Browse files
committed
Initial commit
0 parents  commit 27c3ff7

14 files changed

+2438
-0
lines changed

.gitignore

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
6+
# Runtime data
7+
pids
8+
*.pid
9+
*.seed
10+
11+
# Directory for instrumented libs generated by jscoverage/JSCover
12+
lib-cov
13+
14+
# Coverage directory used by tools like istanbul
15+
coverage
16+
17+
# nyc test coverage
18+
.nyc_output
19+
20+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
21+
.grunt
22+
23+
# node-waf configuration
24+
.lock-wscript
25+
26+
# Compiled binary addons (http://nodejs.org/api/addons.html)
27+
build/Release
28+
29+
# Dependency directories
30+
node_modules
31+
jspm_packages
32+
33+
# Optional npm cache directory
34+
.npm
35+
36+
# Optional REPL history
37+
.node_repl_history
38+
39+
# Build folders
40+
build
41+
dist
42+
43+
# Build artifact
44+
*.zip

.travis.yml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
dist: trusty
2+
language: node_js
3+
node_js:
4+
- node
5+
6+
before_script:
7+
- yarn
8+
- yarn run build

README.md

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
[![Build Status](https://travis-ci.org/tobymurray/express-typescript-babel.svg?branch=master)](https://travis-ci.org/tobymurray/express-typescript-babel)
2+
3+
# ExpressJS, TypeScript 2 and Babel
4+
ExpressJS is one of the go-to technologies for Node JS servers. If you're looking for something to support an Angular client, it's a great choice. Unfortunately the associated generator project produces vanilla JavaScript, and coming from the TypeScript world of Angular, who wants vanilla ES5-ish JavaScript?
5+
6+
## Build
7+
8+
Start with `yarn run build`
9+
10+
```
11+
$ yarn run build
12+
yarn run v0.20.3
13+
$ yarn run clean && yarn run tsc && yarn run babel && yarn run copy-files
14+
yarn run v0.20.3
15+
$ rm -rf build && rm -rf dist
16+
Done in 0.31s.
17+
yarn run v0.20.3
18+
$ node ./node_modules/.bin/tsc
19+
Done in 1.74s.
20+
yarn run v0.20.3
21+
$ node ./node_modules/.bin/babel --presets es2015 build --out-dir dist --source-maps
22+
build/app.js -> dist/app.js
23+
build/bin/www.js -> dist/bin/www.js
24+
build/models/http_error.js -> dist/models/http_error.js
25+
build/routes/index.js -> dist/routes/index.js
26+
build/routes/users.js -> dist/routes/users.js
27+
Done in 0.80s.
28+
yarn run v0.20.3
29+
$ cp package.json dist/ && cp -r public dist/ && cp -r node_modules dist/
30+
Done in 0.28s.
31+
Done in 4.11s.
32+
```
33+
34+
## Run
35+
36+
Run with `cd dist && yarn run start`
37+
38+
```
39+
$ cd dist && yarn run start
40+
yarn run v0.20.3
41+
$ node ./bin/www
42+
```

app.ts

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
"use strict";
2+
3+
import express from 'express';
4+
import path from 'path';
5+
import favicon from 'serve-favicon';
6+
import logger from 'morgan';
7+
import cookieParser from 'cookie-parser';
8+
import bodyParser from 'body-parser';
9+
10+
import { HttpError } from './models/http_error'
11+
import { index } from './routes/index';
12+
import { users } from './routes/users';
13+
14+
export default class App {
15+
public app: express.Application;
16+
17+
constructor() {
18+
this.app = express();
19+
20+
// uncomment after placing your favicon in /public
21+
//app.use(favicon(path.join(__dirname, 'public', 'favicon.ico')));
22+
this.app.use(logger('dev'));
23+
this.app.use(bodyParser.json());
24+
this.app.use(bodyParser.urlencoded({ extended: false }));
25+
this.app.use(cookieParser());
26+
this.app.use(express.static(path.join(__dirname, 'public')));
27+
28+
this.app.use('/', index);
29+
this.app.use('/users', users);
30+
31+
// catch 404 and forward to error handler
32+
this.app.use(function (req, res, next) {
33+
var err = new HttpError('Not Found', 404);
34+
next(err);
35+
});
36+
37+
// error handler
38+
this.app.use(function (err, req, res, next) {
39+
// set locals, only providing error in development
40+
res.locals.message = err.message;
41+
res.locals.error = req.app.get('env') === 'development' ? err : {};
42+
43+
// render the error page
44+
res.status(err.status || 500);
45+
res.sendFile('error.html', {
46+
root: (<any>global).appRoot + '/public/'
47+
});
48+
});
49+
}
50+
}

bin/www.ts

+102
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,102 @@
1+
#!/usr/bin/env node
2+
3+
/**
4+
* As this is the entrypoint for the application, set a global variable for
5+
* the root path of the server. This makes it a little easier to serve static
6+
* files as their path is relative to the root instead of the file that is
7+
* trying to serve them.
8+
*/
9+
10+
var path = require('path');
11+
(<any>global).appRoot = path.join(__dirname, './..');
12+
13+
/**
14+
* Module dependencies.
15+
*/
16+
17+
import App from '../app';
18+
import debug from 'debug';
19+
import http from 'http';
20+
21+
/**
22+
* Instantiate the application as it's a class now
23+
*/
24+
25+
const application = new App();
26+
27+
/**
28+
* Get port from environment and store in Express.
29+
*/
30+
31+
var port = normalizePort(process.env.PORT || '3000');
32+
application.app.set('port', port);
33+
34+
/**
35+
* Create HTTP server.
36+
*/
37+
38+
var server = http.createServer(application.app);
39+
40+
/**
41+
* Listen on provided port, on all network interfaces.
42+
*/
43+
44+
server.listen(port);
45+
server.on('error', onError);
46+
server.on('listening', onListening);
47+
48+
function normalizePort(val) {
49+
var port = parseInt(val, 10);
50+
51+
if (isNaN(port)) {
52+
// named pipe
53+
return val;
54+
}
55+
56+
if (port >= 0) {
57+
// port number
58+
return port;
59+
}
60+
61+
return false;
62+
}
63+
64+
/**
65+
* Event listener for HTTP server "error" event.
66+
*/
67+
68+
function onError(error) {
69+
if (error.syscall !== 'listen') {
70+
throw error;
71+
}
72+
73+
var bind = typeof port === 'string'
74+
? 'Pipe ' + port
75+
: 'Port ' + port;
76+
77+
// handle specific listen errors with friendly messages
78+
switch (error.code) {
79+
case 'EACCES':
80+
console.error(bind + ' requires elevated privileges');
81+
process.exit(1);
82+
break;
83+
case 'EADDRINUSE':
84+
console.error(bind + ' is already in use');
85+
process.exit(1);
86+
break;
87+
default:
88+
throw error;
89+
}
90+
}
91+
92+
/**
93+
* Event listener for HTTP server "listening" event.
94+
*/
95+
96+
function onListening() {
97+
var addr = server.address();
98+
var bind = typeof addr === 'string'
99+
? 'pipe ' + addr
100+
: 'port ' + addr.port;
101+
debug('Listening on ' + bind);
102+
}

models/http_error.ts

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
export class HttpError extends Error {
2+
3+
private status: number;
4+
5+
constructor(message: string, status: number) {
6+
super(message);
7+
8+
this.status = status;
9+
}
10+
}

package.json

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"name": "express-typescript-babel",
3+
"version": "0.0.0",
4+
"private": true,
5+
"scripts": {
6+
"start": "node ./bin/www",
7+
"clean": "rm -rf build && rm -rf dist",
8+
"tsc": "node ./node_modules/.bin/tsc",
9+
"babel": "node ./node_modules/.bin/babel --presets es2015 build --out-dir dist --source-maps",
10+
"copy-files": "cp package.json dist/ && cp -r public dist/ && cp -r node_modules dist/",
11+
"build": "yarn run clean && yarn run tsc && yarn run babel && yarn run copy-files",
12+
"package": "zip -r express-typescript-babel.zip dist",
13+
"test": "echo 'no tests yet...'"
14+
},
15+
"dependencies": {
16+
"body-parser": "~1.18.2",
17+
"cookie-parser": "~1.4.3",
18+
"debug": "~3.1.0",
19+
"express": "~4.16.2",
20+
"morgan": "~1.9.0",
21+
"serve-favicon": "~2.4.5"
22+
},
23+
"devDependencies": {
24+
"@types/body-parser": "^1.16.8",
25+
"@types/cookie-parser": "^1.3.30",
26+
"@types/debug": "^0.0.30",
27+
"@types/express": "^4.0.35",
28+
"@types/morgan": "^1.7.32",
29+
"@types/node": "^8.0.53",
30+
"@types/serve-favicon": "^2.2.28",
31+
"babel-cli": "^6.23.0",
32+
"babel-preset-es2015": "^6.22.0",
33+
"babel-preset-stage-2": "^6.22.0",
34+
"copyfiles": "^1.2.0",
35+
"typescript": "^2.1.6"
36+
}
37+
}

public/error.html

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<html>
2+
3+
<head></head>
4+
5+
<body>
6+
<h1>Don't know the error message</h1>
7+
<h2>Don't know the status code</h2>
8+
<pre>Error: This is a static file - obviously at odds with dynamically filling in these contents without a bit of work.</pre>
9+
</body>
10+
11+
</html>

public/index.html

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<html>
2+
3+
<head>
4+
<title>Express</title>
5+
<link rel="stylesheet" href="/stylesheets/style.css">
6+
</head>
7+
8+
<body>
9+
<h1>Express</h1>
10+
<p>Welcome to Express</p>
11+
</body>
12+
13+
</html>

public/stylesheets/style.css

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
body {
2+
padding: 50px;
3+
font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
4+
}
5+
6+
a {
7+
color: #00B7FF;
8+
}

routes/index.ts

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import express from 'express';
2+
var index = express.Router();
3+
4+
index.get('/', function (req, res, next) {
5+
res.sendFile('index.html', {
6+
root: global["appRoot"] + '/public/'
7+
});
8+
});
9+
10+
export { index };

routes/users.ts

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import express from 'express';
2+
var users = express.Router();
3+
4+
users.get('/', function (req, res, next) {
5+
res.send('respond with a resource');
6+
});
7+
8+
export { users };

tsconfig.json

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"compilerOptions": {
3+
"module": "es2015",
4+
"target": "es2015",
5+
"noImplicitAny": false,
6+
"sourceMap": true,
7+
"outDir": "build",
8+
"allowSyntheticDefaultImports": true
9+
},
10+
"exclude": [
11+
"node_modules"
12+
]
13+
}

0 commit comments

Comments
 (0)