You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 1, 2024. It is now read-only.
Like many Front End Engineers I have to do everything in React these days.
One of the great things about levelup is that you can pair it with level-js in order to run it in a browser. Up until now I have being doing this by making node-style React apps with require and then browserifying everything.
However since React uses ES6 modules by default, it seems like the best way to incorporate a levelup instance into a browser app would be to somehow get it as an ES6 module. This would have the advantage that it could be plugged straight into the supported tooling that comes from the React project
Like many Front End Engineers I have to do everything in React these days.
One of the great things about
levelupis that you can pair it withlevel-jsin order to run it in a browser. Up until now I have being doing this by making node-style React apps withrequireand then browserifying everything.However since React uses ES6 modules by default, it seems like the best way to incorporate a levelup instance into a browser app would be to somehow get it as an ES6 module. This would have the advantage that it could be plugged straight into the supported tooling that comes from the React project
So- is
levelupavailable as an ES6 module?