README
npm-devil
Demo for npm.
Directory structure for open source projects:
. ├── LICENSE ├── .gitignore ├── .editorconfig ├── .eslintrc.js ├── README.md ├── package.json ├── demo/ | ├── js/ | └── index.html ├── src/ | └── js/ └── index.js
ES6 module和CommonJS的循环加载
<script type="module">
import npmDevil from 'https://cdn.skypack.dev/npm-devil';
</script>
Demo for npm.
Directory structure for open source projects:
.
├── LICENSE
├── .gitignore
├── .editorconfig
├── .eslintrc.js
├── README.md
├── package.json
├── demo/
| ├── js/
| └── index.html
├── src/
| └── js/
└── index.js