lcod-preprocessor
This project defines a Svelte preprocessor for .lcod
folders containing a client.yaml
descriptor.
flowchart LR
A(Imported\nHelloWorld.lcod) -->|lcod-preprocessor\nfor client.yaml| B(On the fly\nHelloWorld.svelte)
B --> |svelte| C(Generated\nVanilla JS + HTML + CSS)
The client.yaml file
A client.yaml
file can be defined in a .lcod
component and it's used to describe sub componants (.lcod
or .svelte
) tree with their slot
and properties
.
Usage
In your svelte project, edit the svelte.config.js
to declare the lcod-preprocessor
.
import adapter from '@sveltejs/adapter-auto';
import { configureLcodPreprocessor } from './src/lib/lcod-preprocessor.mjs';
/** @type {import('@sveltejs/kit').Config} */
const config = {
preprocess: configureLcodPreprocessor({ writeSvelte: true, lcpath: true }),
kit: {
adapter: adapter()
}
};
export default config;
Motivation
Have KISS piece of code to translate a structured descriptor (yaml
) for a componants, pages or application.
Generating Svelte code allows to have benefits of all its avantages: fast and light compilation, HMR
development and allows many CSR
/SSR
configurations.