- npm install
- npm run build
- npm run start
Apps will be running on http://localhost:3000, http://localhost:3001
Commonjs support:
Right now we depend on importing commonjs libraries from esm.sh like:
import React from 'https://esm.sh/react';
import ReactDOM from 'https://esm.sh/react-dom';It would be nice if we can use:
import React from 'react';
import ReactDOM from 'react-dom';