我正在AWS上部署dockerized打字稿应用程序。当我运行应用程序容器时,我得到一个ts节点错误Error: Cannot find module 'typescript'
,因为typescript
被定义为devDependency,所以我不清楚。
这些是我的package.json
依赖项
{
"name": "app-server",
"version": "0.0.0",
"description": "description",
"author": "Marcello Bardus",
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"format": "prettier --write \"src/**/*.ts\"",
"start": "ts-node -r tsconfig-paths/register src/main.ts",
"start:dev": "nodemon",
"start:debug": "nodemon --config nodemon-debug.json",
"prestart:prod": "rimraf dist && tsc",
"start:prod": "node dist/main.js",
"lint": "tslint -p tsconfig.json -c tslint.json",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json"
},
"dependencies": {
"@nestjs/common": "^5.4.0",
"@nestjs/core": "^5.4.0",
"@nestjs/typeorm": "^5.3.0",
"@types/mongoose": "^5.3.18",
"elliptic": "^6.4.1",
"mongoose": "^5.4.14",
"object-hash": "^1.3.1",
"pg": "^7.8.0",
"randomstring": "^1.1.5",
"reflect-metadata": "^0.1.12",
"rimraf": "^2.6.2",
"rxjs": "^6.2.2",
"sha2": "^1.0.2",
"typeorm": "^0.2.13",
"typescript": "^3.0.1"
},
"devDependencies": {
"@nestjs/testing": "^5.1.0",
"@types/express": "^4.16.0",
"@types/jest": "^23.3.1",
"@types/node": "^10.7.1",
"@types/supertest": "^2.0.5",
"jest": "^23.5.0",
"nodemon": "^1.18.10",
"prettier": "^1.14.2",
"supertest": "^3.1.0",
"ts-jest": "^23.1.3",
"ts-loader": "^4.4.2",
"ts-node": "^7.0.1",
"tsconfig-paths": "^3.5.0",
"typescript": "^3.0.1",
"tslint": "5.11.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}
还有Dockerfile
FROM node
WORKDIR /usr/src/app
COPY . /usr/src/app
RUN npm install -g ts-node nodemon
RUN npm install
RUN npm install typescript
EXPOSE 8085
CMD ["nodemon", "."]
我想typescript
是在容器构建后本地安装的,但不是。
预先感谢
答案 0 :(得分:4)
最后,我让 ts-node 使用 npx 工作:
全局安装打字稿:
npm i typescript -g
转到您的项目目录并将打字稿链接到项目:
cd <my-project>
npm link typescript
使用 npx 执行 ts-node:
npx ts-node <your-ts-script>.ts
答案 1 :(得分:1)
我已经使用 - npm i typescript -g
全局安装了打字稿
问题仍然存在 - 错误:找不到模块‘@types/node/package.json‘
然后这帮助我解决了问题 - sudo npm install -D tslib @types/node
此后,我可以使用其中任何一个来运行我的脚本文件 -
npx ts-node <script-file>.ts
或
ts-node <script-file>.ts
您将在 npmjs 官方网站上获得详细说明 - https://www.npmjs.com/package/ts-node
答案 2 :(得分:0)
如果您打算使用 ts-node
和 nodemon
作为应用程序的起点,请在 package.json
依赖项中明确定义它们。
然后RUN npm install --production
他们将在 node_modules/.bin/
~/foo/node_modules/.bin
> ls
is-ci@ nodetouch@ rc@ ts-node@ ts-node-transpile-only@
nodemon@ nopt@ semver@ ts-node-script@ ts-script@
然后您可以将 ./node_modules/.bin/nodemon
或 npx nodemon
作为 Docker CMD
运行。
npx
从本地 node_modules/.bin 或中央缓存执行,安装运行所需的任何包。
来源:npx
提示改进 Dockerfile
、the right way 以缓存 node_modules
。
COPY package*.json /usr/src/app
<块引用>
请注意,我们只是复制 package.json 文件,而不是复制整个工作目录。这使我们能够利用缓存的 Docker 层。
然后复制应用文件
COPY . /usr/src/app
不要忘记.dockerignore
node_modules
。