I'm currently integrating the winston-aws-cloudwatch library into my TypeScript server-side application.
If you want to replicate the issue, I have provided a SSCCE setup on GitHub. Here are the details:
index.ts
import logger from './logger';
logger.info(`🚀🚀🚀 logger is up !!`);
logger.ts
import winston from 'winston';
import CloudWatchTransport from 'winston-aws-cloudwatch';
const logger = winston.createLogger();
logger.add(new CloudWatchTransport({logGroupName:'my-api', logStreamName: 'lstream'}));
logger.level = 'silly';
export default logger;
tsconfig.json
{
"compilerOptions": {
"target": "es2017" ,
"module": "commonjs" ,
"lib": [
"es2017",
"esnext.asynciterable"
] ,
"allowJs": true ,
"sourceMap": true ,
"outDir": "./dist" ,
"noUnusedLocals": true ,
"noUnusedParameters": true ,
"noImplicitReturns": true ,
"noFallthroughCasesInSwitch": true ,
"moduleResolution": "node" ,
"baseUrl": "./" ,
"paths": {
"*": ["node_modules/*", "src/types/*"]
} ,
"allowSyntheticDefaultImports": true ,
"esModuleInterop": true
}
}
package.json
{
"name": "winston-aws",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node index.js",
"watch-node": "nodemon dist/index.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"watch-test": "npm run test -- --watchAll",
"build-ts": "tsc",
"watch-ts": "tsc --traceResolution -w"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"babel-cli": "^6.26.0",
"winston": "^3.0.0",
"winston-aws-cloudwatch": "^2.0.0"
},
"devDependencies": {
"@types/node": "^10.3.3",
"babel-preset-env": "^1.7.0",
"concurrently": "^3.5.1",
"nodemon": "^1.17.5",
"ts-node": "^6.1.1",
"typescript": "^2.9.2"
}
}
When attempting to run the application using npm run watch
, I encounter the following error:
[Node] internal/modules/cjs/loader.js:596
[Node] throw err;
[Node] ^
[Node]
[Node] Error: Cannot find module './lib/'
[Node] at Function.Module._resolveFilename (internal/modules/cjs/loader.js:594:15)
[Node] at Function.Module._load (internal/modules/cjs/loader.js:520:25)
[Node] at Module.require (internal/modules/cjs/loader.js:650:17)
[Node] at require (internal/modules/cjs/helpers.js:20:18)
[Node] at Object.<anonymous> (/Users/nishant/dev/sscce/dist/node_modules/winston-aws-cloudwatch/index.js:1:80)
[Node] at Module._compile (internal/modules/cjs/loader.js:702:30)
[Node] at Object.Module._extensions..js (internal/modules/cjs/loader.js:713:10)
[Node] at Module.load (internal/modules/cjs/loader.js:612:32)
[Node] at tryModuleLoad (internal/modules/cjs/loader.js:551:12)
[Node] at Function.Module._load (internal/modules/cjs/loader.js:543:3)
It appears that TypeScript successfully resolved the path:
[TypeScript] ======== Module name './lib/' was successfully resolved to '/Users/nishant/dev/sscce/node_modules/winston-aws-cloudwatch/lib/index.js'. ========
However, I noticed that while
node_modules/winston-aws-cloudwatch
contains a lib
directory, it is missing in dist/node_modules/winston-aws-cloudwatch
.
At this stage, I'm uncertain about what could be causing the issue.