Software:Quasar framework

From HandWiki
Short description: JavaScript framework
Quasar Framework
Quasar Logo.png
Original author(s)Razvan Stoenescu
Initial releaseFebruary 2015; 9 years ago (2015-02)[1]
Stable release
2.9.1 / October 3, 2022; 21 months ago (2022-10-03)[2]
RepositoryQuasar Framework
Written inJavaScript
Size14.7 KB min+gzip
TypeJavaScript framework
LicenseMIT License[3]
Websitequasar-framework.org

Quasar Framework (commonly referred to as Quasar; pronounced /ˈkw.zɑːr/[4]) is an open-source Vue.js based framework for building apps, with a single codebase, and deploy it on the Web as a SPA, PWA, SSR, to a Mobile App, using Cordova for iOS & Android, and to a Desktop App, using Electron for Mac, Windows, and Linux. [5][6]

Quasar Framework was created by Razvan Stoenescu and is maintained by him and the rest of the active core team members, who work at various companies such as Lenovo, IntelliView Technologies Inc. and AG Development Services.[7]

Overview

Quasar Framework Quasar’s motto is: Build high-performance VueJS user interfaces in record time. This is possible because you only need to write one authoritative source of code for all platforms: responsive desktop/mobile websites (SPA, SSR + SPA client takeover, SSR + PWA client takeover), PWAs (Progressive Web Apps), mobile apps (that look native) and multi-platform desktop apps (through Electron) and also Browser Extensions.[8]

There’s a component for almost every web development need within Quasar. Quasar is designed with performance & responsiveness in mind, therefore overhead of using Quasar is barely noticeable.[9]

History

Quasar Framework was created by Razvan Stoenescu after working for IBM and Lenovo using constantly new and different software tools to create all the separate types of iOS apps, Android apps, web apps, websites, Windows Desktop apps, Apple Desktop apps, and PWAs. He later summed up his thought process: "I longed for a single framework that would remove all the complexity and produce all these different flavours of apps … from a SINGLE codebase. Unable to locate such a mythical tool, I decided to build it."[10][11]

The first source code commit to the project was dated 2015, and Quasar stable 1.0 release was released in July 2019. The first Quasar conference took place in July 2020.[12] Quasar v2 (with Vue.js 3) went stable in 2.0.0 release in June 2021.

Features

Components

Quasar apps are built using Vue and *.vue Single File Component system, which contain multiple sections: template (HTML), script (Javascript) and style (CSS/Stylus/SASS/SCSS/Less) - all in the same file.[13] The code snippet below contains an example of a Quasar component. The component links properties in a side drawer:

<template>
  <q-item
    clickable
    tag="a"
    target="_blank"
    :href="link"
  >
    <q-item-section
      v-if="icon"
      avatar
    >
      <q-icon :name="icon" />
    </q-item-section>

    <q-item-section>
      <q-item-label>{ title }</q-item-label>
      <q-item-label caption>
      </q-item-label>
    </q-item-section>
  </q-item>
</template>

<script>
export default {
  name: 'EssentialLink',
  props: {
    title: {
      type: String,
      required: true
    },

    caption: {
      type: String,
      default: ''
    },

    link: {
      type: String,
      default: '#'
    },

    icon: {
      type: String,
      default: ''
    }
  }
}
</script>

Ecosystem

The core library comes with tools and libraries both developed by the core team and contributors.

Official tooling

Quasar CLI
The global part of the CLI needed for the creation of the apps via development and a build environment for cross-device/ cross-platform application development and distribution.
Quasar App
The local part of the CLI, which entails the development and build environments. The CLI allows for extremely fast development via a dev server, which enables you to see your changes happen live. Using the build systems of the CLI, you to take your single project and build it out to the multiple platforms and environments Quasar supports (i.e. Web, PWA, Web+SSR, PWA+SSR, Cordova, Capacitor, Electron, Browser Extensions, etc.).
Quasar UI
The component library within Quasar, with battle tested, high performance components along with numerous directives, helper utilities, plugins and more.

See also

Sources

Definition of Free Cultural Works logo notext.svg This article incorporates text from a free content work. Licensed under MIT License License statement: Quasar Framework Guide, Quasar Framework, To learn how to add open license text to HandWiki articles, please see this how-to page. For information on reusing text from HandWiki, please see the terms of use.

References

  1. "Why every Vue developer should be excited by Quasar 1.0". https://medium.com/quasar-framework/quasar-1-0-4bc696d60c1b/. 
  2. "Quasar Framework Quasar Releases". October 3, 2022. https://github.com/quasarframework/quasar/releases. 
  3. "Quasar/LICENSE". https://github.com/quasarframework/new-issue.quasar.dev/blob/master/LICENSE. 
  4. "Guide: What is Quasar?". https://quasar.dev/introduction-to-quasar#What-is-Quasar%3F#What-is-Quasar-js. 
  5. Connell, Danny (2020). Quasar Framework: Cross-Platform Vue JS Vuex & Firebase Apps. Udemy.
  6. "Guide: What is Quasar?". https://quasar.dev/introduction-to-quasar#What-is-Quasar%3F#What-is-Quasar-js. 
  7. "Meet the Team — Quasar Framework" (in en). https://quasar.dev/meet-the-team. 
  8. "What-is-Quasar" (in en). https://quasar.dev/introduction-to-quasar. 
  9. "What-is-Quasar" (in en). https://quasar.dev/introduction-to-quasar. 
  10. Stoenescu, Razvan (2019-07-03). "Why every Vue developer should be excited by Quasar 1.0" (in en). https://medium.com/quasar-framework/quasar-1-0-4bc696d60c1b. 
  11. "Guide: What is Quasar?". https://quasar.dev/introduction-to-quasar#What-is-Quasar%3F#What-is-Quasar-js. 
  12. "Quasar.conf 2020" (in en). 2020-07-05. 
  13. "Vue Single File Components (SFC) — Quasar Framework" (in en). https://quasar.dev/start/how-to-use-vue#Vue-Single-File-Components-(SFC). 

External links