이 이름은 자유롭게 해요
(단, 특수문자 안됨. 영문 소문자만!)
$ meteor
[[[[[ ~/Documents/js/_app/test/app ]]]]]
=> Started proxy.
=> Started MongoDB.
=> Started your app.
=> App running at: http://localhost:3000/
<head>
<title>Hello</title>
</head>
<body>
{{> main}}
</body>
<template name="main">
<h1>Hello, world!</h1>
</template>
./client/main.html
Meteor.startup(function() {
console.log("Hi, everyone");
});
./client/main.js