TIL Node LTS
POSTED ON:
TAGS: javascript
Node LTS is the agreed upon version that every active project should try to stay within. Even-numbered releases–like Node.js 8, Node.js 10, Node.js 12, and so on–will become LTS.
If you're shipping an application or API to production, you should probably err on the side of caution and aim for the latest LTS. If you're developing a side project, you can go ahead and use the Current release line. If you're building tooling that's meant to be super helpful to a bunch of developers, you should probably try to support a range of versions.
What is LTS?
LTS: LTS is an acronym for Long-Term Support, and is applied to release lines (yes, that's plural) that will be supported and maintained by the Node.js project for an extended period of time.
Via nodesource.
Related TILs
Tagged: javascript