Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/zhoukekestar/esm-demos

ESM Demos
https://github.com/zhoukekestar/esm-demos

esm snowpack

Last synced: about 2 months ago
JSON representation

ESM Demos

Awesome Lists containing this project

README

        

## ESM Demos

### Hello ESM

```html

import moment from 'https://cdn.pika.dev/moment@^2.26.0';

document.querySelector('p').innerHTML = `This date is formated by moment: ${
moment().format('YYYY-MM-DD HH:mm:ss')
}`;

```