TypeScript-Node-Starter
TypeScript-Node-Starter copied to clipboard
A reference example for TypeScript and Node with a detailed README describing how to use the two together.
Hello, I am not able to deploy to Azure App Service. I get the following error " You are not authorized to access this page" I believe there are more...
Hi guys, I've forked this awesome starter project and created a starter for a REST API: [TypeScript REST Node Starter](https://github.com/maljukan/typescript-node-rest-starter) It has a basic `JWT` authentication and activation using `SMTP`...
Is it possible to include [dtslint](https://github.com/Microsoft/dtslint) to demonstrate how to lint your custom types?
Is there anyway for me to specify the proxy i'm under?
The Node mailer is deprecated. Can the project have updated dependencies.
It would be great to have support for some more traditional DBMS ... maybe on a separate branch for each DBMS? In this ticket I'd like to have postgres supported,...
It would be nice if koa-based project like this project would be created.
With the current setup, it's possible to put this into `src/server.ts` and it will compile fine: ``` window.alert('this is not valid in Node'); ``` Normal solution is to put `"lib":...
Hi, I can't export my model as my model type. [This line](https://github.com/Microsoft/TypeScript-Node-Starter/blob/master/src/models/User.ts#L88) gives me this error: ``` src/model/person.model.ts(19,14): error TS2322: Type 'Model' is not assignable to type 'TUserModel'. Type 'Model'...
I have a modified version of the express example that uses the latest version. When referencing the entity class ``` photos = await getEntityManager().getRepository(Photo).find() ``` I receive an error, however...