# Installation ## Trying out Marko If you just want to play around with Marko in the browser, head on over to our [Try Online](https://markojs.com/try-online) feature. You'll be able to develop a Marko application right in your browser. ## Creating new apps If you're starting from scratch, [`marko-cli`](https://github.com/marko-js/cli) provides a starter app to get you going quickly. To get started: ```bash npm install marko-cli --global marko create hello-world cd hello-world npm start ``` ## Direct usage ### Installing The Marko compiler runs on [Node.js](https://nodejs.org/) and can be installed using [npm](https://www.npmjs.com/package/marko): ``` npm install marko ``` or using [yarn](https://yarnpkg.com): ``` yarn add marko ``` ### In the browser Let's say we have a simple view that we want to render in the browser: `hello.marko` _hello.marko_ ```marko