TypeScript-Node-Starter icon indicating copy to clipboard operation
TypeScript-Node-Starter copied to clipboard

A reference example for TypeScript and Node with a detailed README describing how to use the two together.

Results 71 TypeScript-Node-Starter issues
Sort by recently updated
recently updated
newest added
trafficstars

hey there, thanks for this great node starter there is currently no `NODE_ENV ` declaration on `.env.example` e.g. `NODE_ENV=development`

It is important to reset the CSRF token when authenticating as a different user, see for instance to https://security.stackexchange.com/a/22936/17247. I may be missing something but it does not appear that...

compiling error in file inside folder in src directory ``` [Node] SyntaxError: Cannot use import statement outside a module [Node] at Module._compile (internal/modules/cjs/loader.js:892:18) [Node] at Object.Module._extensions..js (internal/modules/cjs/loader.js:973:10) [Node] at Module.load...

If you clone the repository and change the tsconfig to use declarations, a lot of "inferred type" errors are thrown. ``` "compilerOptions": { ... "declaration": true, ... ``` ``` The...

I want to change the theme from default to flatly. I think that the way to do that is by modifying [this file.](https://i.imgur.com/WzE6b5P.png) Namely changing these lines: ``` @import "themes/default/variables";...

Thank you for that useful example! I came here to find the most bare bone example while using the latest Typescript and Node. I understand most people wouldn't want that...

The express-validator has been upgrade and its 5.* version explicitly states that API used in this project (and some projects, that part of this project are based on), are deprecated:...

Referring to this code in users.ts: ``` /** * POST /account/profile * Update profile information. */ export const postUpdateProfile = async (req: Request, res: Response, next: NextFunction) => { await...

It would be great if all of these projects included a devcontainer dir & docker file so that they can be run without any machine setup or config