Hi everyone,
Lately I've been working on a lightweight JavaScript framework called PlazarJS. It is an OOP versatile framework built to enrich the developer experience in terms of simplicity and speed of application development. It can be used to create a Single-Page-Application or it can be integrated to a portion of a web page where dynamic workflow is required.
Example component:
import pz from '@plazarjs/core';
const helloWorld = {
ownerType: 'component',
template: '<div>Hello from {fw}</div>',
renderTo: 'body',
autoLoad: true,
viewModel: {
fw: 'plazarjs'
}
};
export default pz.define('hello-world', helloWorld);
By publishing this post I'm providing an early access, since we are still in alpha. I think it's well accepted considering that it had quite the number of downloads in a short period of time. If you like to see more check it out on github .
Dwight Badua
Backend Developer
New frameworks are cool and all, but we need to know what's the "new offering", and why is there a need for a new framework. In other words, what does it offer beyond React, Angular, or Vue? What were the problems you saw in these frameworks that you had to create another one. What's the value proposition?
Otherwise, that's one great work! Cheers!