typicode / please-upgrade-node

:information_desk_person: Show a message to your users to upgrade Node instead of a stacktrace

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

how to use with express and typescript require ?

agborkowski opened this issue · comments

Hi @agborkowski,

It would need some testing, as I don't know if TS changes the order of imports or if the output can be compatible with old Node versions, ...

To make things simpler, personally, I would create an index.js with something like this:

// This will work in Node 0.12
const pkg = require('./package.json')
require('please-upgrade-node')(pkg)

// Then require the transpiled TS code
require('./lib/your-server')