@lcod/preprocessor
TypeScript icon, indicating that this package has built-in type declarations

0.0.2 • Public • Published

lcod animated

GitHub Workflow Status GitHub

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.

/@lcod/preprocessor/

    Package Sidebar

    Install

    npm i @lcod/preprocessor

    Weekly Downloads

    0

    Version

    0.0.2

    License

    Apache-2.0

    Unpacked Size

    21.3 kB

    Total Files

    7

    Last publish

    Collaborators

    • nicolas-albert