Node.js is just JavaScript running on the server side. That's it. That's all there is to it.
- Express Docs, if you want to get started and already know JavaScript this is the place to be
| defmodule MyApp.Books.Book do | |
| use Ecto.Schema | |
| import Ecto.Query, warn: false | |
| import Ecto.Changeset | |
| import MyApp.ChangesetHelpers | |
| schema "books" do | |
| field :name, :string | |
| field :genres, {:array, :string}, default: [] |
Node.js is just JavaScript running on the server side. That's it. That's all there is to it.
| <VirtualHost *:80> | |
| ServerName es.yourhost.com | |
| <Proxy balancer://main> | |
| BalancerMember http://127.0.0.1:9200 max=1 retry=5 | |
| <Limit GET > | |
| order deny,allow | |
| deny from all | |
| allow from 127.0.0.1 |