I'm just started using node and wanted to try it with typescript. I did an npm install @types/node
and the latest version was 7.0.4:
$ npm install @types/node
[email protected] /home/wink/prgs/test-simple-node-typescript
└── @types/[email protected]
Where as the latest version of node is 7.5.0:
$ node --version
v7.5.0
What is the relationship between the version of node.js and that of @types/node?
node
changes from @types org which left me feeling that things were out of date or incorrect. – Detrain