-
{ "name": "my-node-project", "version": "1.0.0", "description": "", "main": "index.js", "type": "module", "scripts": { "coverage": "c8 --reporter=lcov ava", "coverage:view": "c8 --reporter=html --reporter=text ava", "lint": "npm run lint:code && npm run lint:types", "lint:code": "standard", "lint:fix": "standard --fix", "lint:types": "tsc", "prepare": "husky install", "test": "ava", "test:watch": "ava --watch", "build:types": "tsc -p tsconfig.build.types.json" }, "repository": { "type": "git", "url": "https://github.com/your-username/my-node-project.git" }, "keywords": [ "generator" ], "contributors": [ { "name": "Álvaro José Agámez Licha", "email": "[email protected]" } ], "license": "MIT", "devDependencies": { "ava": "^5.3.1", "c8": "^8.0.0", "commitizen": "^4.3.0", "cz-conventional-changelog": "^3.3.0", "husky": "^8.0.3", "sinon": "^15.2.0", "standard": "^17.1.0", "typescript": "^5.1.6" }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } } }
-
CodeRabbit
CodeRabbit: AI Code Reviews for Developers. Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
-
The full code for this Node.js Starter is available on Github.
-
JSDoc can be a powerful tool not only for generating TypeScript types but also for enabling type checking in your JavaScript code. By providing type annotations through JSDoc comments, you can improve code clarity, maintainability, and catch potential errors early on. In this section, we'll explore how to use JSDoc to generate TypeScript types and discuss the benefits of incorporating type checking into your development process.
-
JSDoc can be a powerful tool not only for generating TypeScript types but also for enabling type checking in your JavaScript code. By providing type annotations through JSDoc comments, you can improve code clarity, maintainability, and catch potential errors early on. In this section, we'll explore how to use JSDoc to generate TypeScript types and discuss the benefits of incorporating type checking into your development process.