1.2.1 • Published 2 months ago

pagelogic v1.2.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago

PageLogic

CodeQL Node.js CI

An HTML-based, isomorphic, reactive web framework.

Modern web development is mostly done using some reactive framework, like React, Vue or Angular. This has many advantages, but they all add plenty of complexity and make the experience closer to desktop development.

PageLogic aims to restore simplicity while preserving the benefits of modern frameworks. It extends HTML with <:...> directive tags, :... logic attributes, and ${...} reactive expressions to let you write modular, reactive logic directly in HTML.

Hello world

This is a minimal but complete PageLogic page:

<html>
<body>
  <button :count=${0}
          :on-click=${() => count++}>
    Clicks: ${count}
  </button>
</body>
</html>

We'll save it as index.html in ./www. We can now install PageLogic and serve it like this:

npm i -g pagelogic
pagelogic serve www
# address http://127.0.0.1:3000/

Alternatively we can statically compile with pagelogic build and use the generated HTML pages. Our example will generate a index.html + index.js pair of files which, together, implement page behaviour. The compiler will also generate a pagelogic-rt.js file in the destination directory, containing the PageLogic runtime used by all compiled pages.

Why PageLogic

  • Zero boilerplate forget all the obscure cerimonies like React's useState() etc.: PageLogic handles these details behind the scenes, keeping your code clean.

  • Zero dependencies PageLogic pages only need their namesake JavaScript file, implementing page logic, and the PageLogic runtime, both generated by the compiler or the server.

  • No Virtual DOM PageLogic uses direct DOM reflection, a much lighter and efficient solution.

  • Isomorphic by design with other frameworks, delivering content-ready pages for search engine indexing can be complex: PageLogic's server does it by default.

  • Super lightweight because runtime, compiler and server were designed together, it sports a tiny size of less than 3kB (minified, gzipped) in the browser.

  • Flexible deployment PageLogic pages can be served using its own Node.js server, its Express middleware in the context of your project, or as static precompiled HTML pages.

  • Advanced routing the same set of pages can work as a classic website and as a modern SPA at the same time.

  • Simple components moving from a simple block of code to a reusable component is trivial and you can effortlessly build your own reusable libraries over time.

1.2.0

2 months ago

1.2.1

2 months ago

1.1.10

3 months ago

1.1.9

3 months ago

1.1.8

3 months ago

1.1.7

3 months ago

1.1.6

3 months ago

1.1.5

3 months ago

1.1.4

3 months ago

1.1.3

3 months ago

1.1.2

4 months ago

1.1.1

4 months ago

1.1.0

4 months ago

1.0.1

4 months ago

1.0.0

4 months ago