TypeScript + Node.JS web development

I am looking for something like Play (Java) or Symfony (PHP), but written in TypeScript for Node.JS, unfortunately, no luck finding it. Maybe someone can point me in the right direction?

+4
source share
1 answer

Using TypeScript does not mean cutting yourself off from JavaScript libraries. All the compiler needs is a declaration file to tell him how you should use the JS library. They exist for most popular libraries, but support for the Node.js framework seems more sparse. The only ad file I found was for Express with the file available here . Fortunately, it is quite popular and should be a good place to start.

+2
source

Source: https://habr.com/ru/post/1487075/


All Articles