All Projects → sgoran → micro

sgoran / micro

Licence: MIT license
Small client side router and tpl library

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to micro

spair
A small and fast frontend framework in Rust
Stars: ✭ 65 (+242.11%)
Mutual labels:  spa
WiFi-remote-for-Bestway-Lay-Z-SPA
Hack - ESP8266 as WiFi remote control for Bestway Lay-Z spa Helsinki
Stars: ✭ 138 (+626.32%)
Mutual labels:  spa
quasar-typescript-admin-template
💫 💫 [use Class API Not use composion or option API]template for Vue2 or Vue3 admin with quasar and use Tyepscript (master branch ->Vue2, v3-admin branch ->Vue3) 🌝 🌝 support pwa,electron,spa,Ionic
Stars: ✭ 87 (+357.89%)
Mutual labels:  spa
spa
Single Page Application template
Stars: ✭ 18 (-5.26%)
Mutual labels:  spa
nandomoreira.me-nuxt-theme
🏃🏻‍♂️ My superfast personal SPA blog/site using Vuejs and Nuxt :D
Stars: ✭ 44 (+131.58%)
Mutual labels:  spa
site
RailroadPM.org 2.x Site
Stars: ✭ 18 (-5.26%)
Mutual labels:  spa
dimigoin-front-v2
한국디지털미디어고등학교 인트라넷, 디미고인
Stars: ✭ 19 (+0%)
Mutual labels:  spa
sapui5-cli
Simple CLI to scaffold SAPUI5 / OpenUI5 projects.
Stars: ✭ 17 (-10.53%)
Mutual labels:  spa
vue-user-center
💻一个用vue.js(2.0)写的直播类应用web端个人中心
Stars: ✭ 54 (+184.21%)
Mutual labels:  spa
cozy-contacts-v2
Contact books manager for Cozy
Stars: ✭ 20 (+5.26%)
Mutual labels:  spa
gecko-home-assistant
Home Assistant integration for spas equipped with Gecko Alliance in.touch2 modules
Stars: ✭ 41 (+115.79%)
Mutual labels:  spa
sharesome
Share files quickly from your remote storage
Stars: ✭ 21 (+10.53%)
Mutual labels:  spa
spago
SpaGo is toolkit for Single Page Application.
Stars: ✭ 33 (+73.68%)
Mutual labels:  spa
single-spa-parcel-example
An example of web app built with multiple microfrontends running in different VM's using the single-spa framework.
Stars: ✭ 56 (+194.74%)
Mutual labels:  spa
parksben.github.io
parksben's blog
Stars: ✭ 46 (+142.11%)
Mutual labels:  spa
elm-spa
Pure Elm library to easily build Single Page Applications
Stars: ✭ 37 (+94.74%)
Mutual labels:  spa
aem-react-editable-components
SPA React Editable Components for Adobe Experience Manager
Stars: ✭ 43 (+126.32%)
Mutual labels:  spa
letportal
Angular 9 .NET Core 3.1 open source web portal platform 2020 for building quickly application form, data grid , data list, chart, report, users management
Stars: ✭ 29 (+52.63%)
Mutual labels:  spa
ms-bus
基于 avalon2 的 SPA 脚手架
Stars: ✭ 31 (+63.16%)
Mutual labels:  spa
router-example
Use React Router DOM to create a Single Page Application (SPA).
Stars: ✭ 50 (+163.16%)
Mutual labels:  spa

Micro client side Single Page Library: http://micro-js.com Goal is to use it fast to improve UX and fragment your application without need to learn Angular, React etc.

Installing

$ npm install micro-spa

or by embedding directly on page

<script src="https://unpkg.com/micro-spa@latest"></script>

Running examples

To run examples do the following to install dev dependencies and run the example express server:

$ git clone https://github.com/sgoran/micro.git
$ cd micro/examples/blog
$ npm install
$ cd micro/examples/blog
$ npm start
$ open http://localhost:8080

Simple API

  new Micro({
            config: {
                container: '#app',
                tplDir: '/tpl',
                enterAnimation: 'fadeIn'
            },
            router: [{
                match: '/',
                title: 'Home Page',
                src: "home.html"
            },{
                match: '/example',
                title: 'Example Page',
                src: "examples.html"
            }]
        });

    
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].