title: Learn Meteor JS and deploy an app to the Raspberry Pi 2
permalink: /en-US/win10/MeteorOnPi.htm
lang: en-US
---
<divclass="container">
<divclass="spacer-32-top row">
<divclass="col-md-4 col-lg-4"></div>
<divclass="col-md-16 col-lg-16">
<sectionclass="section">
<headerclass="spacer-32-top section-header">
<h1>Create a MeteorJS app and deploy it to the Raspberry Pi 2</h1>
</header>
<divclass="section-body">
<p>In this tutorial, we are going to create and deploy the sample applciation, MeteorJS Todos, as a Universal Windows App that can run on the Raspberry Pi 2 as well as any other Windows Device.</p>
</div>
</section>
</div>
</div>
<divclass="row row-spacer">
<divclass="col-md-4 col-lg-4"></div>
<divclass="col-md-16 col-lg-16">
<sectionclass="section">
<headerclass="spacer-32-top section-header">
<h2>What you need to for this tutorial</h2>
</header>
<divclass="section-body">
<ulclass="bulleted-list">
<li>Windows machine</li>
<li>Raspberry Pi 2</li>
<li>Basic Git knowledge</li>
<li><ahref="https://www.visualstudio.com/">Visual Studio 2015</a>. The free, full-featured Visual Studio Community 2015 includes the Windows 10 developer tools, universal app templates, a code editor, a powerful debugger, Windows Mobile emulators, rich language support, and much more—all ready to use in production.</li>
<li>(Optional) <ahref="https://dev.windows.com/en-us/downloads/windows-10-sdk">Windows Standalone SDK for Windows 10</a>. If you are using a development environment other than Visual Studio 2015, you can download a standalone Windows SDK for Windows 10 installer. Note that you do not need to install this SDK if you're using Visual Studio 2015; it is already included.</li>
</ul>
</div>
</section>
</div>
</div>
<divclass="row row-spacer">
<divclass="col-xs-24 col-md-12 col-md-push-12">
<sectionclass="item-section">
<headerclass="section-header">
<h2class="spacer-32-bottom">Step 1: Get and Run MeteorJS Todos</h2>
</header>
<divclass="section-body spacer-32-bottom">
<olclass="spacer-16-top">
<li><ahref="https://www.meteor.com/install">Download MeteorJS</a> for Windows</li>
<li>
<p>To download the app, open your terminal and type:</p>
<pclass="spacer-16-top">This will create a new folder called <strong>todos</strong> with all of the files that a Meteor app needs.</p>
</li>
<li>
<p>To run the newly create app, open your terminal and type:</p>
<pclass="spacer-16-top">
<codeclass="simple-code">
cd todos
</code>
</p>
<p>
<codeclass="simple-code">
meteor
</code>
</p>
<pclass="spacer-16-top">Open Edge and go to <strong>http://localhost:3000</strong> to see the app running. It should look like the picture to the left.</p>
<p>Follow <ahref="{{site.baseurl}}/en-US/win10/DeployToPiWithVS.htm">this tutorial</a> to deploy your newly MeteorJS app as a Windows Universal Platform app.</p>