2016-12-05 62 views
0

這裏是我的文件夾結構,我有2個文件夾客戶端和服務器,客戶端具有角應用程序的所有結構,如它有應用程序文件夾(組件和引導文件,即main.js )在根node_modules的index.html和其他配置文件,而服務器有server.ts文件(Express服務器)node_modules無法獲取本地主機核心,區域,反映和systemjs

我得到這個錯誤在控制檯:

enter image description here

這裏是我的服務器.ts文件:

import * as express from "express"; 
var app = express(); 
import * as path from "path"; 

app.get('/', function (req, res) { 
res.sendFile(path.resolve(__dirname + "./../client/index.html")); 
}) 
app.listen(3000, function() { 
console.log('Example app listening on port 3000!') 
}) 

回答