stuff like const app = require('express')();.
Is there an ES module equivalent?
You can either use the import-export npm package or you can transpile you node code thru Babel. Both options allow you to use import express from 'express'
Обсуждают сегодня