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

https://github.com/iroco-co/cronparser-sveltekit

little repo to test CJS/ESM interoperability
https://github.com/iroco-co/cronparser-sveltekit

Last synced: 3 months ago
JSON representation

little repo to test CJS/ESM interoperability

Awesome Lists containing this project

README

        

# Sveltekit with cron-parser and luxon

This is to try to understand CJS/ESM interoperability.

This repo has been created with:

```shell
npm create svelte@latest sveltekit-luxon
npm i
npm add cron-parser
npm add luxon
# adapt routes/+page.svelte
```

To run in dev mode

```shell
npm run dev
```

To run in preview

```shell
npm run build
npm run preview
```

To run production code

```shell
npm run build
node build
```