list of way, we can generate calendar (month, week, or other views)
<div class="recorder__container">
<button class="recorder__button recorder__button--record" id="recorder-record-button">Record</button>
<button class="recorder__button recorder__button--paly" id="recorder-play-button">Play</button>
this gist forked from @akirattii
an example of chrome extension, which can be opened as new tab by click its browser icon.
forked from @akirattii
barcode scanner with javascript (browserify)
forked from @akirattii
The package that linked you here is now pure ESM. It cannot be require()
'd from CommonJS.
This means you have the following choices:
- Use ESM yourself. (preferred)
Useimport foo from 'foo'
instead ofconst foo = require('foo')
to import the package. You also need to put"type": "module"
in your package.json and more. Follow the below guide. - If the package is used in an async context, you could use
await import(…)
from CommonJS instead ofrequire(…)
. - Stay on the existing version of the package until you can move to ESM.
NewerOlder