テスト Meteor アプリケーションを作成したところ、クライアントの開発ツールで全体的なコード (サーバー側も) を確認できることがわかりました。アプリのテスト (ブラウザーで):
(function(){ if (Meteor.isClient) {
Template.hello.greeting = function () {
return "Welcome to test_app.";
};
Template.helo.events({
'click input' : function () {
// template data, if any, is available in 'this'
if (typeof console !== 'undefined')
console.log("You pressed the button");
}
});
}
if (Meteor.isServer) {
Meteor.startup(function () {
// code to run on server at startup
});
}
}).call(this);
これは設計によるものですか?サーバー側のコードはサーバーにとどまることができますか?