mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
71 lines
2.8 KiB
HTML
71 lines
2.8 KiB
HTML
<template name="basicIntroduction">
|
|
<div id="introduction">
|
|
<!-- clicking this anchor in the left bar should scroll to top of doc,
|
|
not here -->
|
|
|
|
{{#markdown}}
|
|
|
|
_**Meteor is an ultra-simple environment for building modern websites.
|
|
What once took weeks, even with the best tools, now takes hours with
|
|
Meteor.**_
|
|
|
|
The web was originally designed to work in the same way that mainframes
|
|
worked in the 70s. The application server rendered a screen and sent it
|
|
over the network to a dumb terminal. Whenever the user did anything,
|
|
that server rerendered a whole new screen. This model served the Web
|
|
well for over a decade. It gave rise to LAMP, Rails, Django, PHP.
|
|
|
|
But the best teams, with the biggest budgets and the longest schedules,
|
|
now build applications in JavaScript that run on the client. These apps
|
|
have stellar interfaces. They don't reload pages. They are reactive:
|
|
changes from any client immediately appear on everyone's screen.
|
|
|
|
They've built them the hard way. Meteor makes it an order of
|
|
magnitude simpler, and a lot more fun. You can build a complete
|
|
application in a weekend, or a sufficiently caffeinated hackathon. No
|
|
longer do you need to provision server resources, or deploy API
|
|
endpoints in the cloud, or manage a database, or wrangle an ORM layer,
|
|
or swap back and forth between JavaScript and Ruby, or broadcast data
|
|
invalidations to clients.
|
|
|
|
{{> quickStart}}
|
|
|
|
{{> principles}}
|
|
|
|
<h2 id="learning-resources">Learning Resources</h2>
|
|
|
|
<!-- https://github.com/blog/273-github-ribbons -->
|
|
<a href="http://github.com/meteor/meteor"><img class="github-ribbon visible-desktop" style="position: absolute; top: 0; right: 0; border: 0;" src="/forkme_right_red_aa0000.png" alt="Fork me on GitHub"></a>
|
|
|
|
There are many community resources for getting help with your app. If Meteor
|
|
catches your interest, we hope you'll get involved with the project!
|
|
|
|
<dl class="involved">
|
|
<dt><span>Tutorial</span></dt>
|
|
<dd>Get started fast with the <a href="https://www.meteor.com/install">official Meteor tutorial</a>!
|
|
</dd>
|
|
|
|
<dt><span>Stack Overflow</span></dt>
|
|
<dd>The best place to ask (and answer!) technical questions is on <a href="http://stackoverflow.com/questions/tagged/meteor">Stack
|
|
Overflow</a>. Be sure to add
|
|
the <code>meteor</code> tag to your question.
|
|
</dd>
|
|
|
|
<dt><span>Forums</span></dt>
|
|
<dd>Visit the <a href="https://forums.meteor.com">Meteor discussion
|
|
forums</a> to announce projects, get help, talk about the community,
|
|
or discuss changes to core.
|
|
</dd>
|
|
|
|
<dt><span>GitHub</span></dt>
|
|
<dd>The core code is on <a href="http://github.com/meteor/meteor">GitHub</a>. If you're able to write code or file issues, we'd love to have your help. Please read <a href="https://github.com/meteor/meteor/wiki/Contributing-to-Meteor">Contributing to Meteor</a> for how to get started.
|
|
</dd>
|
|
{{/markdown}}
|
|
</div>
|
|
|
|
{{> commandLine}}
|
|
{{> basicFileStructure}}
|
|
{{> basicMobile}}
|
|
|
|
</template>
|