by Razvan Stoenescu
It is with great pleasure that I proudly announce the Launch of Quasar Framework 1.0.0-beta.0! This service guide will cover what you need to know about all of the new guidance and life-support systems that will keep you alive inside the Quasar.
Repository: https://github.com/quasarframework/quasar
Shall we take a trip to the stars and see what's in store for us? Well astro-, taiko- and cosmonauts, buckle in for a life-changing flight -- destination Quasar 1.0! Your Vue 2.6 gyros are stabilized; Node’s fuel-tank modules are current and SNYK audited; AST transpiling is 100%; testing harnesses are pre-rigged and you’re ready for take-off!
T-minus 3 seconds and counting ------ 3 ----- 2 ----- 1 ------ We have lift-off!
Little Joe II - Public Domain
## Your Flight Manual
Everybody hates the Terran-Martian Transit Zone, so in the "few days" (that's what they told you when you signed up, right?) before you can slingshot around the red planet and bootstrap the FTL, you're going to have a few moments to occupy yourself. You won't have as much time as it took the staff to write the handbook, but it will be enough to review new parameters, figure out the new console and potentially make a PR to fix the odd spelling mistake.

https://www.jpl.nasa.gov/visions-of-the-future/
## Dig in
**Direct your device to the new documentation page at https://v1.quasar-framework.org**
As opposed to the legacy Framework, the new docs run on Quasar SSR and are full of nice suprises, like embedded examples of real functioning components linked to CodePens. There is also much more complete API documentation of all plugins, mixins and components. The docs have been revamped for a much better DX experience.
And for those of you used to pre-assignment planning, there are two brand new Heads Up Displays (We call them "Builders").
### Theme Builder

https://v1.quasar-framework.org/style/theme-builder
The Theme Builder will help you to create color schemes, see how they look together and finally export them, so you get this stylus markup:
$primary = #027BE3
$secondary = #26A69A
$accent = #9C27B0
$positive = #21BA45
$negative = #C10015
$info = #31CCEC
$warning = #F2C037
### Layout Builder

https://v1.quasar-framework.org/layout-builder
Like the Theme Builder, you can also interactively create your layout. This takes a lot of guesswork out of always figuring out what the heck `hHh lpR fFf` does or means. As with all builders, Layout Builder will create your layout markup for you with an HTML template and JS.
From a developer's perspective, we think the documentation has taken a phenomenal step forward in supporting your work with Quasar.
### Take a Space Walk
Check out [the components](https://v1.quasar-framework.org/vue-components/ajax-bar). They are pixel-perfect and Material Design 2.0 compliant. There are a bunch of new ones, like QCircularProgress, QMarkupTable, QBar, QSlideItem and QSplitter. Some others have been rewritten from scratch like QDialog, QInput and QSelect. And, others like QMenu that are combining previous functionalities. Overall, the whole amazing palette of Quasar components has been much more harmonized and simplified. We'll be getting into more details about them below and in some HYS articles (v1.0 Have You Seen) coming soon. Be sure to look out for them.
## Slingshotting your workflow - The CLI
Now that we've gotten acquainted with the docs and are gaining velocity, it's time to get set up with the new and even more powerful CLI.
Follow these short instructions to get going (assuming you are using at least Node 8LTS - but Node 11 will work as well):
# If you already have quasar-cli installed as a global, remove it
$ yarn global remove quasar-cli
# or
$ npm uninstall --global quasar-cli
# or be brutal cuz its your system
$ QUASAR=$(which quasar); sudo rm ${QUASAR}
$ npm install -g @quasar/cli
> Note: we're installing the package *@quasar/cli* globally with npm, because we've seen global yarn installs getting borked in different ways on different OS's. We still feel that yarn is superior for managing your local dependencies though. However, it's all up to you.
Let's boot up a project. Below are the new commands for creating and developing your app project (the example demonstrates the Electron dev mode).
$ quasar create my-new-app --branch dev # for the v1.0 beta
$ cd my-new-app
$ quasar dev --mode electron
> Note: we are using the `--branch dev` option to create the app currently. This is because until v1.0 reaches final, the starter-kit for v1.0 is in the dev branch of the Quasar Starter Kit repo. Once v1.0 goes final, it will be moved to master, where the `--branch dev` option for v1.0 projects will no longer be needed (but will always be available). And at that point, you'll need the branch option for creating legacy projects i.e. `quasar create my-new-app --branch v0.17`
Some points of interest with the new CLI:
- As shown above, the original project initialization command `quasar init` has been changed to `quasar create`.
- There is now the `describe` command, which allows you to get the API of a specific component: `quasar describe QBtn`
- There is also the new `inspect` command. The inspect command let's you get a readout of the Webpack configuration currently in use.
- You can now also create Quasar extensions. More on that below.
- It's backwards compatible and will build and run legacy apps.
There are also a ton of other smaller improvements in the CLI, which you won't directly notice as a developer. Just know that the CLI is there to make your journey that much more relaxing and enjoyable!
## The Long Haul to Quasar - App Development
One of the first and most important things you now get with Quasar 1.0 is a stable API. As of 1.0, there won't be any more breaking changes. Only new features in minor releases and bug fixes in patch releases, just as you would expect from a project following [Semver](https://semver.org/).
The legacy (or "0") versions of the past two and a half years have been an exercise in gathering experiences and input from the community on how to make Quasar as great as it can be and this feedback has been diligently built into Quasar 1.0. Here are some of the improvements and features you will encounter:
- The Material theme explicitly follows the Material 2.0 Design Specifications. And despite the strict adherence to the Material Design spec, Quasar has a plethora of possibilities to make your application stand out on its own.
- The [EVA icon library](https://akveo.github.io/eva-icons/#/) was added to the already great choices of icon libraries available within Quasar like Material Icons, Ionicons and Font Awesome.

Eva icon samplesAs mentioned above, there are many new components. Here is a list of them: - [QAvatar](https://v1.quasar-framework.org/vue-components/avatar) - a scalable color-able element, which can hold a text, image or icon - [QBadge](https://v1.quasar-framework.org/vue-components/badge) - helps create a small badge for adding contextual data needing to stand out - [QBanner](https://v1.quasar-framework.org/vue-components/banner) - for displaying prominent messages - [QBar](https://v1.quasar-framework.org/vue-components/bar) - a small component for creating the top bar for mobile or desktop applications - [QCircularProgress](https://v1.quasar-framework.org/vue-components/circular-progress) - to display a circular progress indicator, for longer running processes - [QImg](https://v1.quasar-framework.org/vue-components/img) - a component that makes working with images easier - [QMarkupTable](https://v1.quasar-framework.org/vue-components/markup-table) - a simple way to wrap a normal `
And for those who have struggled to rig testing-harnesses, [@quasar/testing](https://v1.quasar-framework.org/quasar-cli/testing-and-auditing) is a suite of app extensions that you can use today which have access to Quasar CTX and extend `quasar run` with a new configurable command: `test`

### More information
If you need more information about Quasar, here are a few links that you can check out for your consideration:
- MONOREPO: https://github.com/quasarframework/quasar
- THE DOCS: https://v1.quasar-framework.org/
- DISCORD: http://chat.quasar-framework.org/
- FORUM: https://forum.quasar-framework.org/
- TWITTER: https://twitter.com/quasarframework
- STEEM: http://steemit.com/@quasarframework
Thanks for reading, have a safe trip and let us know when you arrive!!!
---
### Special Thanks to:
@materaz for winning the challenge of asking the most times about when 1.0 is finally going to arrive! Here's your prize: