DEV Community

Cover image for I've created yet another JavaScript framework
Nhan Lam
Nhan Lam

Posted on • Updated on

I've created yet another JavaScript framework

It's 2024 and you've created yet another JavaScript framework. Seriously man!

When talking about another Javascript framework, you may laugh and think that there are tons of proven options out there why bother creating another one? ๐Ÿคทโ€โ™‚๏ธ

Let me share with you my personal story which leads to the development of a new Javascript framework. But if you don't care about my pathetic story, here is the TLDR:

TiniJS is a meta framework powered by the Web Components technology based on the Google Lit library.

You can start by trying out an example on Stackblitz. Or downloading the starter template. Or initialize an app using the CLI, run npx @tinijs/cli@latest new my-app -l and follow the instruction.

For more detail, please see the Get started section below or visit https://tinijs.dev/.

The story

Too many Javascript frameworks

Joke aside, I'm not an expert in Javascript, but for a little bit about my background so you may know my anoyance story regarding front-end web development. I used to be an Angular developer back in the version 1 of it and currently working mainly with Vue and accasionally jQuery. I had these 3 PITA (Pain In The *beep*) experience which motivated me to experiment with the TiniJS framework.

PITA #1 - BUILDING A GOOD UI/UX IS HARD, IT IS TEDIOUS AND TIME CONSUMING!

Back in around 2010, there are two distint kinds of websites: the one with a ton of texts, links, barely any images here and there; and the others are with overwhelmed graphical elements such as GIF images, Flash background, rainbown cursors, ...

People tend to have the stereo type that back-end is hard and front-end is easy. It's kinda true, but not entirely, I mean, who am I to blame, right? Because with a little bit knowledge of HTML and CSS, you can pretty much build a static website very easily. But, in order to build a good UI/UX, there is much more to be considered. You have to be a master of many more things, and they are not easy at all!

Front-end development is not easy!

PITA #2 - CSS FRAMEWORKS ARE LACK OF FUNCTIONALITIES AND CUSTOMIZING THEM IS NOT VERY EFFICIENT!

People realized the difficulty of front-end development and started to build CSS frameworks to help with the problem. Bootstrap is one of the pioneers of this trend, other popular ones are: Foundation, Semantic UI, Bulma, Skeleton, Pure CSS, ... Those CSS frameworks are great, no doubt about that, they help us to build a good UI/UX faster, but they also have their own limitations.

First, despite the fact that all the frameworks provide certain ways to customize the style, but overall, I feel that it is not very easy and reusable to me.

Customize CSS framework is not very efficient

Second, is the lack of functionalities. I mean, they are mainly CSS, they provide some functions, usually as plugins to JQuery. Most of the cases you have to write your own Javascript to make a feature works.

PITA #3 - JAVASCRIPT FRAMEWORKS ARE OVERWHELMING AND SOMEWHAT REDUNDANT!

Enter the modern era of web development, Javascript frameworks are the new trend. But the problem is that we have so many choices, it is both a blessing and a curse. They provide great functions but not very interoperable, you can't just take a piece of code from one framework and use it in another. Especially, creating a UI system with separated packages for specific frameworks is a very daunting task.

Front-end web dev is fragmented

Every time I start a project or do some kind of front-end work, the fragmentation of front-end web is somewhat painful to me. That seems to be the way of life, there is no avoid, isn't it? Please don't get me wrong, I'm not against any framework, I tend to choose solutions and not technologies, so if it works for you, just go with it. But I wonder to myself is there any way to somehow unify or lessen the gap in front-end development experience? ๐Ÿค”

Introducing TiniJS

That is the reason why I experiment with the TiniJS framework for a while. It is a collection of tools for developing web/desktop/mobile apps using the native Web Component technology, based on the Lit library. Thank you the Lit team for creating a great tool assists us working with standard Web Component easier.

It is aimed to be as much standard, small and versatile as possible. Not really comparable to other frameworks and meta-frameworks, but overall, it has similar capabilities and also in the other hand, key differences. It is both a replacement choice and a complement to other frameworks. You may use TiniJS to build a various type of apps: landing pages, SPAs, PWAs, desktop apps, mobile apps, ... Feature-wise, anything works in Javascript should work fine in a TiniJS app.

The whole system consists of several parts, this is a quick introduction.

Please note that not all the parts available now, the project is at an early stage, some are previously experiments, I try my best to bring them live as soon as possible. But I have limited time and resource, so please bear with me and perhaps please lend me a hand if possible. ๐Ÿ™‡โ€โ™‚๏ธ
The plan for V1 and its roadmap can be found at https://github.com/tinijs/tinijs

Core

At the core, TiniJS provides a conventional project structure with a streamline development pipeline. There are folders for organizing stuffs, a local server for development, upon distribution, you can choose Vite or Parcel or Webpack to build the production.

The core also includes: the Router for navigating between pages, a simple Store for global state management, PWA supported, ...

You can try an example project at Try TiniJS (an example Photo Gallery App)

UI system

TiniJS has a dedicated UI library where I aim to provide every commonly used components and blocks and even whole pages. Components are architected in a special way where they are custom elements to be used not only with TiniJS, but also with other frameworks or no framework.

Tini UI concept

Working with reusable components is easy, usually in the form of passing props to the custom element tag. Customization can be done via props or CSS ::part() or custom theme family or completely clone a component source, ...

Components are also able to accommodate almost any design systems with as little effort as possible. This is achieved via a theming system; the concept is this:

  • Components are written only once, they are headless (without specific styles)
  • Themes are organized into Families (aka. design systems), families define their own base characteristics, for example: Bootstrap, Material, Fluent, Spectrum, ...
  • Upon the base characteristics, a family have style variants, called Skins, for example, the Bootstrap family may have: Light skin, Dark skin, ...

With the theming concept in mind, any app can have these theming capabilities:

  • One theme family - could be 80% to 90% of all the web apps exist today have only 1 certain style equivalent to TiniJS 1 theme family.
  • One theme family + multiple skins - the common use case of this is Light/Dark modes equivalent to TiniJS 1 theme family with multiple skins from the same family.
  • Multiple theme families - highly personalized apps may have multiple theme families with one or multiple skins from each family, a certain theme will be applied depends on user reference.

UI usage detail will be available at the homepage, for now you can also check the experimental concept at https://ui.tinijs.dev/ to see the concept in action.

Web pages, PWA, hybrid Desktop/Mobile

A default TiniJS app is a single page application, it's small and fast, it can be deployed straight away as a web app. But you can also turn an TiniJS to one or all of these kinds of apps:

  • Progressive Web App (PWA) - achieve with a single CLI command (comming soon)
  • Hybrid Desktop/Mobile apps - using Tauri 2.0 or similar tools (todo: write instruction)

Static and Server

A TiniJS app can be started as a static web no matter big or small without a need of a server or database. You can always use SaaS services for almost any backend needs. I am also developing the @tinijs/content - a file-based content management system for managing many types of content easily. Static site generation (SSG) or prerendering is also in the plan.

An optional Nitro server for server/API routes and other server stuffs if you need to handle backend tasks and refer to serve the web app from a Node server instead of a static host. I am limit in development capacity, so server side rendering (SSR) may not be supported in the first version, instead I plan for semi-SSR, where servers will serve single page to users and serve a minimum server-side rendered content to bots.

Features and modules

Feature-wise, since a TiniJS app is based on standard web technology, therefor any libraries and features those work in browser will probably work in a TiniJS app. So, you may not worry about features compared to other frameworks. You can even use other frameworks inside a TiniJS app, for example init and mount a Vue app to an element inside a TiniJS page.

There is also a module architect so that certain modules can tap into the workflow of a TiniJS app, create a more streamline development pipeline.

Tools

The official CLI tool provides some convenience commands for working with a TiniJS app.

  • new - create new projects with ready-to-use templates
  • dev - start local development server
  • build - build production distribution
  • preview - preview the production build before deploying
  • generate - generate components, pages, utils, ...

Besides, the CLI is generic enough to be used outside of a TiniJS app, in any project of any kind. It has an expandable architect where you can expand more commands to be used in other automation tasks. Some of the official expansions such as ui command (from @tinijs/ui) to handle UI tasks or content command (from @tinijs/content) to handle content related tasks, ... You can create a CLI expansion pack for your own purpose privately or sharable.

OK, enough talking, show me some actions! ๐Ÿ‘Œ

Get started

Tini (or "Tรญ nแป‹" in Vietnamese - meaning something very small in an adorable way).

To quickly create a TiniJS project, you can use the CLI to initialize a template.

npx @tinijs/cli@latest new my-app -l
Enter fullscreen mode Exit fullscreen mode

The above command creates an app by downloading the Bare template. In the future, I would like to provide several starter templates. You can also create your own templates and share them with the community or for your own private use. Currently, these templates available:

  • Bare (default) - minimum structure of a TiniJS app.
  • Blank (flag -t blank) - includes router, state management, meta tags management and the Bootstrap theme family.

Now, inside the project you can run npm run dev to start the development server. You may start development by edit the file ./app/app.ts which is the root component of the app. For how to work with custom elements using Lit please visit Lit component, there are some differents between LitElement and TiniComponent, but for now you can modify static styles and render() as you would normally do.

To build the distribution, run npm run build and optionally run npm run preview to preview the production build. You can now deploy the .output folder to any static host.

You may want to check these examples to see more detail how a TiniJS app works.

That is a basic introduction to the TiniJS framework, for more please visit: https://tinijs.dev.


Next topic: The structure of a TiniJS app and work with Components

Thank you for spending time with me. If there is anything not working for you, please contact me on Discord, I'm happy to assist.

Wish you all the best and happy coding! ๐Ÿ’–

Top comments (53)

Collapse
 
psypher1 profile image
James 'Dante' Midzi

I have just one question:

Is it blazingly fast? ๐Ÿ˜‚

Collapse
 
lamnhan profile image
Nhan Lam

It's is based on Lit with as much adhere to the web standard as possible. Lit is small and fast, so we may expect that TiniJS will be fast too. But, don't take my word alone, please have a try and see it for yourself. ๐Ÿฅฐ
Performance is one of the key focus along with small, versatile and interoperable with other framework. So, I will try my best to make the whole system as fast as possible. ๐ŸŽ

Collapse
 
psypher1 profile image
James 'Dante' Midzi

That good to know... I most definitely shall. Gotta finish this article first ๐Ÿ˜Š

I was making a joke on how any new tech is always touted as 'blazigly fast'; which in my opinion is the wrong metric to aim for (see my article on obsession with speed)

Thread Thread
 
lamnhan profile image
Nhan Lam • Edited

Thank you for the opinion, will definitely check your suggestion. ๐Ÿ˜‡

Collapse
 
amadujallow profile image
Amadu Jallow

Lmao

Collapse
 
shishantbiswas profile image
Shishant Biswas

Time to reset the timer

Collapse
 
lamnhan profile image
Nhan Lam

Haha, 0 day since the last JavaScript framework. ๐Ÿ˜

Collapse
 
efpage profile image
Eckehard

Actually that's sad... Once i started to make a list of Javascript-frameworks, but stopped at about 30, not counting all the projects that did not even have a proper documentation. What a waste of brain power... Assume, all this clever people had contributed to a single project. The web would surely be a better place today.

Thread Thread
 
lamnhan profile image
Nhan Lam

Yes, it's sure an inefficient way of utilizing engineer power, but to collaborate on a massive scale with the balancing between abstraction and specificity is not an easy task.
As I mentioned, we might want to shift our viewpoint to look for solutions instead of technologies. The diversity of the web offers us more choices to our problems, as long as something works, just go with it and be satisfied with our choice. ๐Ÿ˜

Thread Thread
 
efpage profile image
Eckehard

I was not even able to find out, what your "solution" really covers. You project page contains a lot features that are about to come "in the next version" and current code is marked as "experimental". So, it seems it's more an idea than a production ready solution?

Thread Thread
 
lamnhan profile image
Nhan Lam

Yes, it is not production ready as the version 0.x.x implied, there are lots of work to do. The home page is now merely a introduction to what I have learned, experimented and what I plan for future development. I will continue to work on the docs as well as the missing pieces as I mentioned in the roadmap. I hope I would complete the picture as soon as possible so that you may understand the "solution" of the project. Thanks!

Collapse
 
richardevcom profile image
richardev

Great job. Congratz!

Collapse
 
webreflection profile image
Andrea Giammarchi

js-framework-benchmark or it never happened ๐Ÿ˜‡

(also let me know when you'll go tinier with uhtml and its signals based variants)

Collapse
 
lamnhan profile image
Nhan Lam

Hi, that's a great suggestion, it should be benchmarked. For now, you may take Lit 3 as a reference and deduct some percentages.
About signals, you can use signals in Lit, for now 1 implementation available is Preact signal, the Lit team is adding more implementations as we speak. But when it comes to performance, Lit has already have an efficient update system, so signals are probably not gonna contribute much performance in a Lit app.

Collapse
 
jvmmonster profile image
jvm-Monster

Please, I want to know if you used any design concept or design princees or patterns, please let me know and I would really know how you applied them, thank you๐Ÿ˜Š

Collapse
 
lamnhan profile image
Nhan Lam

The project consists of several parts with different common practices, I'm not trying to invent anything fancy concept in terms of design patterns. I use all the familiar concepts that we used to work with, with a little addition on top for a different experience.
For example, the folder structure is a generic Typescript project. The core part is class-based custom elements. The UI system is a collection of custom elements those can be applied to any design systems, ...

Collapse
 
jvmmonster profile image
jvm-Monster

All right, I just started learning design patterns and solid principle in Java, and I found out that it's just hard following those concepts strictly, thanks๐Ÿ˜

Collapse
 
manumaan profile image
Manu Muraleedharan

Uh, is it web scale?

Collapse
 
lamnhan profile image
Nhan Lam

Hi, scalability is a subject for public scrutiny. It is very early now, therefore it needs time for the community to try out and have general agreement upon whether it is useful or a completely flop. โ˜บ๏ธ

Collapse
 
jesktv profile image
JLDev

It sounds pretty cool๐Ÿ‘

Collapse
 
tungbq profile image
Tung Leo

Nice work, bro ๐Ÿ˜Š

Collapse
 
shriekdj profile image
Shrikant Dhayje

Here we go again.

Here we Go Again Meme

Collapse
 
muhtalhakhan profile image
Muhammad Talha Khan

Well, keep on inspiring!

Collapse
 
rustyapple profile image
Rusty Apple • Edited

Ah junior devs always coming up with new frameworks instead of trying to fix that every time they face a problem outside of their domain

No worries. Everyone goes through this phase. I've also done that 3-4 times.

Collapse
 
lamnhan profile image
Nhan Lam

Words are so easy!

Collapse
 
mauroaccorinti profile image
Mauro Accorinti

Congrats! Really curious to really see how to make a page with this. Following for the next few articles on working with components.

Collapse
 
lamnhan profile image
Nhan Lam

Hi, for now please see this example for how to create components and pages working with the routing system, please visit: stackblitz.com/edit/try-tinijs?fil...
More topics about other aspects will be available in the future. Thanks!

Collapse
 
khangnd profile image
Khang

Congrats mate, wish you all the best moving it forward ๐Ÿ‘

Collapse
 
lamnhan profile image
Nhan Lam

Thank you! Please have a try whenever possible. ๐Ÿ™‡โ€โ™‚๏ธ

Collapse
 
artydev profile image
artydev

Congrats :-)

Collapse
 
lamnhan profile image
Nhan Lam

Thank you! Please have a try when you have time and let me know if something not working for you. I'm happy to assist and receive feedbacks from you. ๐Ÿ˜€

Collapse
 
papansarkar101 profile image
Papan Sarkar

God bless you, Dude!