Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

js-mvc-framework

Package Overview
Dependencies
Maintainers
0
Versions
65
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

js-mvc-framework - npm Package Compare versions

Comparing version 1.3.2 to 1.3.3

24

demonstrament/documents/test/index.js

@@ -0,1 +1,22 @@

import { View } from "/dependencies/mvc-framework.js"
const view = new View({
parent: document.createElement("app"),
templates: { default: () => `
<button>BUTTON</button>
` },
querySelectors: {
querySelector: {
button: ':scope > button',
}
},
events: {
"querySelectors.button click": ($event) => {
console.log($event.type, $event)
}
},
}).render()
document
.querySelector('main')
.insertAdjacentElement('afterbegin', view.parent)
/*
import { Content, Model } from '/dependencies/mvc-framework.js'

@@ -55,2 +76,3 @@ // const content = new Content({

content.set("propertyA.propertyB.propertyC", "CCCCCCCCC")
content.delete("propertyA.propertyB.propertyC")
content.delete("propertyA.propertyB.propertyC")
*/

3

development/index.js

@@ -17,3 +17,2 @@ // Primary Imports

// Primary Exports
Core,
Model,

@@ -24,4 +23,6 @@ View,

// Secondary Exports
Core,
Schema, Content,
// Tertiary Exports
Validator, Validation,
}
{
"name": "js-mvc-framework",
"author": "Thomas Patrick Welborn",
"version": "1.3.2",
"version": "1.3.3",
"type": "module",

@@ -6,0 +6,0 @@ "scripts": {

@@ -12,2 +12,88 @@ > [!WARNING]

# MVC Framework
MVC Framework is a Javascript implementation of the **[Presentation-Abstraction-Control (PAC) Pattern](https://en.wikipedia.org/wiki/Presentation%E2%80%93abstraction%E2%80%93control)**
Javascript implementation of the **[Presentation-Abstraction-Control (PAC) Pattern](https://en.wikipedia.org/wiki/Presentation%E2%80%93abstraction%E2%80%93control)** that also supports **[Model-View-Control (MVC) Patterns](https://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller)**.
**Features**
- Web component, web page, or web application use.
- Simplistic configuration.
- Versatile patterning.
- Familiar programming interfaces promote plain Javascript.
- Event management system.
- Modeled content property modifer events, nested events.
- Window Location and Fetch Routers.
## Class System
MVC Framework Classes may be instantiated independently or interdependently.
### Independent Classes
| SYMBOL | NAME | DESCRIPT |
| -----: | :--- | :------- |
| M | MODEL | Manage schematized content. |
| X | MODEL SCHEMA | Manage data schema. |
| D | MODEL CONTENT | Manage data content. |
| V | VIEW | Manage templated markup elements. |
| R | ROUTER | Window location router or fetch router. |
| R<sup>L</sup> | ROUTER (LOCATION) | Manage window location. |
| R<sup>F</sup> | ROUTER (FETCH) | Manage AJAX connection. |
| C | CONTROL | Manage Model, View, Control, Location/Fetch Routers. |
| E | CORE | Manage Event Target Events. |
### Interdependent Class Structures
| FORMULA | NAME | ACRONYM | DESCRIPT |
| ------: | :--- | :------ | :------- |
|**C**<sub>MVRC<sub>\*</sub></sub> | Control (Model, View, Router, Controls) | CMVRC | Control class instances contain model, view, router, and subcontrol class instances. |
|**M**<sub>VRM<sub>\*</sub></sub> | Model (View, Router, Models) | MVRM | Model class instances contain view, router, and submodel class instances. |
|**V**<sub>MRV<sub>\*</sub></sub> | View (Model, Router, Views) | VMRV | View class instances contain model, router, and subview class instances. |
|**R**<sub>MVR<sub>\*</sub></sub> | Router (Model, View, Routers) | RMVR | Router class instances contain model, view, and subrouter class instances. |
## References
### Other Frameworks
Other frameworks that alone or combined resemble MVC Framework and it's class system.
**MV\* Frameworks**
- [PureMVC](https://puremvc.org/)
- [Backbone](https://backbonejs.org/)
- [Marionette](https://marionettejs.com/)
- [Knockout](https://knockoutjs.com/)
- [Angular](https://angular.dev/)
- [React](https://react.dev/)
**Modeled Data Frameworks**
- [Mongoose](https://mongoosejs.com/)
- [ReactRedux](https://react-redux.js.org/)
**Router Frameworks**
- [ReactRouter](https://reactrouter.com/)
- [Express](https://expressjs.com/)
### Keywords
- Presentation-Abstraction-Control
- Hierarchal Movel-View-Control
- Model-View-Control Framework
- MV* Framework
- MVC Framework
- MVR Framework
- MVVR Framework
- MVVM Framework
- MV Framework
- Array, Object Events
- Array, Object Event Bubbling
- Array, Object Nested Events
- Array Events
- Array Concat Event
- Array CopyWithin Event
- Array Fill
- Array Pop Event
- Array Push Event
- Array Reverse Event
- Array Shift Event
- Array Splice Event
- Array Unshift Event
- Object Events
- Object Assign Event
- Object Define Properties/Property Event
- Object Freeze Event
- Object Seal Event
- Property Accessor Events
- Get Event
- Set Event
- Delete Event
- Data Model Validation
- Query Selector
- Plain/Vanilla JS Framework
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