は、私は私の用途に使用する優れた技術スタックです:
サーバー側:
- Express.js
- ハンドルバー
- Passport.js
- マングース
- MongoDB
- Caolanフォーム(しかし、私は現在私ですnは自分のフォームハンドラを実装するプロセス)
- CoffeeScriptの
クライアント側:
- ハンドルバー
- のjQuery
- Require.js
- BACKBONE.JS
- テキスト.js(require.jsのプラグイン)
- Coffeescript(require.js用のプラグイン。私の.coffeeは、r.jsを使ってdev/server側でコンパイルされたクライアント側です)
後で少しサンプルアプリケーションを作成することがあります。
[編集]
okここにサンプルアプリケーションがあります。
プロジェクト構造:
forms
|___ sampleForm.coffee
models
|___ sampleModel.coffee
public
|___ images
|___ stylesheets
| |___ style.less
|___ sampleapp
|___ main.js
|___ cs.js
|___ text.js
|___ require.js
|___ collections
| |___ sampleCollection.coffee
|___ models
| |___ sampleModel.coffee
|___ templates
| |___ sampleTemplate.hbs
|___ lib
| |___ handlesbars.js
| |___ backbone.js
|
| |___ ...
|___ views
|___ sampleView.coffee
routes
|___ index.coffee
views
|___ index.hbs
app.js
application.coffee
package.json
サーバー側:
app.js
require('coffee-script');
module.exports = require('./application.coffee');
application.coffee
... standard express.js initialization
require("./routes")(app)
... start server
index.coffee
SampleModel = require "../models/sampleModel"
module.exports = (app) =>
app.get "/index", (req,res) =>
return res.render "index"
app.get "/samplemodels", (req,res) =>
SampleModel.find {}, (err, models) =>
return res.send 404 if err or !models
return res.send models
return
index.hbs
<!DOCTYPE HTML>
<html>
<head>
<title>Sample app</title>
<link type="text/css" href="/stylesheets/style.css" rel="stylesheet" >
<script src="/mainapp/require.js" data-main="/mainapp/main"></script>
</head>
<body>
<div id="main-content"></div>
</body>
</html>
main.js
require.config({...}) // Configure requires.js...
require(["jquery", "cs!models/samplemodel", "cs!views/sampleview","cs!collections/samplecollection"], function ($, Model, View, Collection) {
var collection = new Collection();
collection.fetch();
var view = new View({collection: collection});
$("body").html(view.render().$el);
})
sampleview.coffee
define ["backbone", "jquery", "handlebars","text!templates/sampleTemplate.hbs"], (Backbone, $, Hbs, template) =>
class MainView extends Backbone.View
initialize: =>
@collection.on "change", @render
@template = Hbs.compile template
render: =>
html = @template {models: @collection.models}
@$el.html(html)
return @
sampleTemplate.hbs
{{#models}}
<p>{{name}}</p>
{{/models}}
[OK]をので、それが不可欠です。ここでBackbone.Collection、Backbone.Model、Require.jsの設定方法、Passport.jsの設定方法、およびMongoose modelの設定方法を学ぶ必要があります。 Less middlewareを使用してstyle.lessをコンパイルすることができます
r.jsですべてのクライアントアプリケーションをプリコンパイルできることを忘れないでください。
ここではこのページを忘れずに、将来にわたってそれを見つけた人に役立つことを願っています。
何百ものMVCフレームワークがなく、最高で3/4のサーバ側とクライアント側の同量です。 – mpm
@mpm:あなたは過小評価していると思います。 [TodoMVC](http://todomvc.com/)には25以上のクライアント側フレームワークがリストされており、クライアントサイドJSや他の多くのカテゴリにコンパイルされています。 –
@Scott Sauyetこれらのフレームワークのうち、インターネット上で拡張されたドキュメント、ブログ投稿、サポート、チュートリアルはどれくらいありますか?それは、フレームワークが使う価値があるかどうかを伝える方法です。これらのフレームワークの80%は採用の観点からは重要ではない。 – mpm