Lucia alternatives and similar libraries
Based on the "derby" category.
Alternatively, view lucia alternatives based on common mentions on social networks and blogs.
-
Alpine.js
A rugged, minimal framework for composing JavaScript behavior in your markup. -
GrapesJS
Free and Open source Web Builder Framework. Next generation tool for building templates without coding -
feathers
A framework for real-time applications and REST APIs with JavaScript and TypeScript -
Adonis
π The Node.js Framework highly focused on developer ergonomics, stability and confidence -
Rete.js
JavaScript framework for visual programming and creating node editor #StandWithUkraine -
litegraph.js
A graph node engine and editor written in Javascript similar to PD or UDK Blueprints, comes with its own editor in HTML5 Canvas2D. The engine can run client side or server side using Node. It allows to export graphs as JSONs to be included in applications independently. -
FoalTS
Elegant and fully-featured Node.Js web framework based on TypeScript. :rocket:. -
Keo
Plain functions for a more functional Deku approach to creating stateless React components, with functional goodies such as compose, memoize, etc... for free. -
finity
A finite state machine library for Node.js and the browser with a friendly configuration DSL.
Appwrite - The Open Source Firebase alternative introduces iOS support
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Lucia or a related project?
Popular Comparisons
README
3kb library for tiny web apps.
Sometimes, all you want to do is to try and do somethingβNo boilerplate, bundlers, or complex build processes. Lucia aims to do this, providing an augmentation layer for your logic, allowing you to bind attributes to your HTML to add interactivity without writing any extra JavaScript.
β Check out the Lucia Website
Installing Lucia
Lucia doesn't require build tools by default, feel free to just drop a script tag in the head of your webpage.
<!-- Development version: helpful console tips -->
<script src="https://unpkg.com/lucia"></script>
<!-- Production version: no warnings -->
<script src="https://unpkg.com/lucia/dist/lucia.min.js"></script>
It also integrates well with module bundlers like Webpack or Rollup, we recommend specifying the exact build if you import Lucia this way.
β Learn more about installing Lucia
Todo App Example
Below is an extremely simple implementation of a todo app using Lucia, utilizing zero JavaScript. Tasks can be added by submitting the form with the input. No, your eyes aren't fooling youβit's really that simple.
<div l-state="{ value: '', todo: [] }">
<!-- oninput: set `value` to input.value -->
<input l-model="value" />
<!-- onclick: add the current `value` to the `todo` array -->
<button @click="todo.push(value)">Create</button>
<!-- joins `todo` array together -->
<ul l-for="task in todo">
<li l-text="this.task"></li>
</ul>
</div>
β View the live Codepen example
Sponsors
Want your logo here? β Sponsor Lucia
Resources & Contributing Back
Looking for the docs? Check the Lucia website out.
Have a question about Lucia? Post it on the GitHub Discussions and ask the community for help.
Find a bug? Head over to our issue tracker and we'll do our best to help. We love pull requests, too!
We expect all Lucia contributors to abide by the terms of our Code of Conduct.
β Start contributing on GitHub
Acknowledgments
Lucia is [MIT-licensed](LICENSE) open-source software by Aiden Bai et al.
Lucia takes heavy inspiration from Vue's syntax, and believes in the core philosophies and values behind Alpine.js, Dababy, and Remake. Feel free to check them out if you interested in an alternative library to use.
Lucia originates from the Latin word "lux", meaning "light, illuminance"
Β© 2020-2021 Aiden Bai.
*Note that all licence references and agreements mentioned in the Lucia README section above
are relevant to that project's source code only.