我目前被困在一个地方,我需要以 HTTPS 模式启动 NodeJS 服务器,并且需要读取证书文件以便将它们作为https.createServer(options, app).listen(8443)
命令中的选项提供。我很难掌握如何将文件读入使用 Webpack 2 捆绑的 TypeScript 文件。例如,
我有 2 个文件 file.crt 和 file.key。我想在创建 https 服务器并开始侦听给定端口时读取这些文件。在常规的 TS/JS 领域,我可以这样做:
```
import Config from '../env/config';
import Express from '../lib/express';
import * as https from 'https';
import * as fs from 'fs';
let config = new Config();
let app = Express.bootstrap().app;
export default class AppService{
constructor(){
// console.log('blah:', fs.readFileSync('./file.txt'));
}
start(){
let options = {
key: fs.readFileSync('file.key'),
cert: fs.readFileSync('file.crt'),
ca: fs.readFileSync('ca.crt'),
passphrase: 'gulp'
};
https.createServer(options, app).listen(config.port,()=>{
console.log('listening on port::', config.port );
});
}
}
但是,当 webpack 2 构建包时,这些文件并没有被引入,所以当 node 启动时它找不到它们。好的,我明白了,但我读到原始加载程序可以解决这个问题,所以我想我会试一试。
这是我的 webpack 配置文件:
// `CheckerPlugin` is optional. Use it if you want async error reporting.
// We need this plugin to detect a `--watch` mode. It may be removed later
// after https://github.com/webpack/webpack/issues/3460 will be resolved.
const {CheckerPlugin} = require('awesome-typescript-loader');
const LoaderOptionsPlugin = require('webpack/lib/LoaderOptionsPlugin');
module.exports = {
target: 'node',
entry: './src/server.ts',
output: {
filename: 'dist/bundle.js'
},
resolve: {
extensions: ['.ts', '.tsx', '.js', '.jsx']
},
devtool: 'source-map',
module: {
rules: [
{test: /\.ts$/, use: 'awesome-typescript-loader'},
{test: /\.json$/, loader: 'json-loader'},
{test: /\.crt$/, use: 'raw-loader'}
]
},
plugins: [
new CheckerPlugin()
],
node: {
global: true,
crypto: 'empty',
fs: 'empty',
net: 'empty',
process: true,
module: false,
clearImmediate: false,
setImmediate: false
}
};
我认为,这意味着可以扫描项目,当您找到任何带有 .crt 的文件时,然后将它们与源映射捆绑为 utf8 字符串。我所要做的就是import crtfile from 'file.crt'
就像 raw-loader doc states 一样,但是,typescript 现在甚至无法编译文件,说明它无法归档模块 file.crt。请帮忙!!我撞墙了。