New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

lucia

Package Overview
Dependencies
Maintainers
1
Versions
109
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lucia

Tiny library for tiny web apps.

  • 0.3.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
39K
increased by4.01%
Maintainers
1
Weekly downloads
 
Created
Source

Lucia Logo

Lucia is a tiny JavaScript library for building web apps.

  • Declarative: Lucia provides a declarative API similar to Vue/Alpine to create views, making development predictable and intuitive through markup-centric code.
  • Reactive: When the view is changed, the internal reference Virtual DOM will automatically react and will update and render the new view in realtime.
  • Lightweight: Lucia is extremely light and performant as it does not use a traditional Virtual DOM, rather it renders directives only if necessary by skipping static nodes through element references.

TravisCI Build Code Size NPM Version GitHub license PRs Welcome Code Coverage

Installation

Lucia is currently is installable through a CDN and also supports UMD (ES Module, CommonJS, IIFE). Put this within your <head> tags in HTML.

<script src="https://unpkg.com/lucia"></script>

If you are using a module bunder like Webpack or Rollup:

npm install lucia

For more details, see the Installation docs page.

Documentation

The Lucia docs are located at https://lucia.js.org:

Example

Below is an example of a clicker game in Lucia. No, your eyes aren't fooling you - it's really that simple.

<div l-init="{ count: 0 }">
  <button l-text="this.count" l-on:click="++this.count">0</button>
</div>

View the live example here

Similar Projects

It should be noted that Lucia should not be implemented in all use cases. Lucia aims to tackle projects that need to be quickly implemented. This means if you're looking for something production-ready and has a API similar to Lucia, check these projects out!

  • Vue - A progressive, incrementally-adoptable JavaScript framework for building UI on the web.
  • Alpine - A rugged, minimal framework for composing JavaScript behavior in your markup.
  • Remake - Create interactive web apps with just HTML.
  • Stimulus - A modest JavaScript framework for the HTML you already have.
  • Mavo - Create web applications entirely by writing HTML and CSS!

Contributing

Refer to the CONTRIBUTING.md file for instructions.

License

Lucia is MIT licensed.

\_ヘ(◕‿◕ ✰)

Keywords

FAQs

Package last updated on 27 Nov 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc