All Projects → baidu → San

baidu / San

Licence: mit
A fast, portable, flexible JavaScript component framework

Programming Languages

javascript
184084 projects - #8 most used programming language
Smarty
1635 projects
typescript
32286 projects
HTML
75241 projects
CSS
56736 projects

Projects that are alternatives of or similar to San

Akane
Lightweight native iOS MVVM framework
Stars: ✭ 92 (-97.96%)
Mutual labels:  framework, mvvm, component
Tko
🥊 Technical Knockout – The Monorepo for Knockout.js (4.0+)
Stars: ✭ 227 (-94.97%)
Mutual labels:  framework, mvvm, frontend
Relight
A light MVVM framework for Android. 一个轻量级的安卓MVVM框架
Stars: ✭ 258 (-94.28%)
Mutual labels:  framework, mvvm
Choo Handbook
🚂✋📖 - Learn the choo framework through a set of exercises
Stars: ✭ 266 (-94.11%)
Mutual labels:  framework, frontend
Mini.css
A minimal, responsive, style-agnostic CSS framework!
Stars: ✭ 2,938 (-34.91%)
Mutual labels:  framework, frontend
Inesita
Frontend web application framework in Ruby using Opal.
Stars: ✭ 253 (-94.4%)
Mutual labels:  framework, frontend
Vue
🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.
Stars: ✭ 191,421 (+4140.61%)
Mutual labels:  framework, frontend
Front End Web Development Resources
This repository contains content which will be helpful in your journey as a front-end Web Developer
Stars: ✭ 3,452 (-23.53%)
Mutual labels:  framework, frontend
Xuui
xLua的mvvm框架,支持ugui,ngui,fairyGUI。。。
Stars: ✭ 199 (-95.59%)
Mutual labels:  framework, mvvm
Vuefront
VueFront Core. Turn your old-fashioned CMS website in to a SPA & PWA in 5 minutes
Stars: ✭ 316 (-93%)
Mutual labels:  framework, frontend
Fritz2
Easily build reactive web-apps in Kotlin based on flows and coroutines.
Stars: ✭ 308 (-93.18%)
Mutual labels:  framework, frontend
Sugar
A lightweight and powerful JavaScript MVVM library. Used for production or learning how to make a full MVVM.
Stars: ✭ 345 (-92.36%)
Mutual labels:  framework, mvvm
Ioing
Implement the solutions of performance improvement and componentization for your SPA (single page application) products with this Progressive Web App Development Engine.
Stars: ✭ 224 (-95.04%)
Mutual labels:  framework, mvvm
Circuits
circuits is a Lightweight Event driven and Asynchronous Application Framework for the Python Programming Language with a strong Component Architecture.
Stars: ✭ 256 (-94.33%)
Mutual labels:  framework, component
Vue.py
Pythonic Vue.js
Stars: ✭ 223 (-95.06%)
Mutual labels:  framework, frontend
Bem Core
BEM Core Library
Stars: ✭ 275 (-93.91%)
Mutual labels:  framework, frontend
Framework
A modular front-end framework - inspired by the server-side and Web Components.
Stars: ✭ 448 (-90.08%)
Mutual labels:  framework, frontend
Component
🔥🔥🔥A powerful componentized framework.一个强大、100% 兼容、支持 AndroidX、支持 Kotlin并且灵活的组件化框架
Stars: ✭ 2,434 (-46.08%)
Mutual labels:  framework, component
Malagu
Malagu Development Framework (QQ: 1013685855 钉钉群:31992376)
Stars: ✭ 196 (-95.66%)
Mutual labels:  framework, component
Knight
Knight is a game framework based on Unity3D engine. It includes a complete assetbundle manager, a c# hotfix module based on ILRuntime, and a UI module based on MVVM, and other basic functions support.
Stars: ✭ 302 (-93.31%)
Mutual labels:  framework, mvvm

Logo

SAN

A fast, portable, flexible JavaScript component framework.

NPM version License Build Status Coverage Status Issues

HomePage 网站

Download

NPM:

$ npm i san

CDN:

<script src="https://unpkg.com/san@latest"></script>

Dist Files Information

Quick Start

<!DOCTYPE html>
<html>

<head>
    <title>Quick Start</title>
    <script src="https://unpkg.com/san@latest"></script>
</head>

<body>
    <script>
        const MyApp = san.defineComponent({
            template: `
                <div>
                    <input type="text" value="{=name=}">
                    <p>Hello {{name}}!</p>
                </div>
            `
        });

        let myApp = new MyApp({
            data: {
                name: 'San'
            }
        });
        myApp.attach(document.body);
    </script>
</body>

</html>

Examples

Document

Companions

ChangeLog

Please visit document ChangeLog

License

San is MIT licensed.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].