An open API service indexing awesome lists of open source software.

https://github.com/mysteryven/tryup

Try to build a ESM bundler from scratch without any dependencies !
https://github.com/mysteryven/tryup

Last synced: 2 months ago
JSON representation

Try to build a ESM bundler from scratch without any dependencies !

Awesome Lists containing this project

README

        

# tryup

Try to build a ESM bundler from scratch without any dependencies !

- [ ] AST Parser
- [x] Variable Statement
- [x] Import / Export
- [ ] For Statement
- [ ] Block Statement
- [ ] Function Declaration

- [x] AST Walker(only add traverse now, will add remove, edit when used in bundler)

- [ ] Bundler
- [ ] Tree shaking
- [ ] Build ESM Module

## Resources

- [Acorn](https://github.com/acornjs/acorn)
- [estree-walker](https://github.com/mysteryven/estree-walker)
- [ESTree](https://github.com/estree/estree/blob/master/es2015.md#importdeclaration)
- [AST Explorer](https://astexplorer.net/)
- [Rollup](https://github.com/rollup/rollup)