| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Famn is an Angular2 application framework with both client side and server side integrated. I have been exploring for such an Angular2 MEAN for a while but w/o an ideal solution, so I write it.
Famn stands for Feathers, Angular2, MongoDB, and Node.js
Famn borrowed much from angular2-webpack-starter, @angular/material, ng2-material
IMPORTANT This project has no commercial level of support and it's suggested to use in development for quick prototype. PR is welcome to make it go further.
# prepare environment
npm i nodemon ts-node typescript@2.0
# or use yarn
yarn add nodemon ts-node typescript@2.0
# build client code
yarn run build:client:dev
# start server with webpack hmr
yarn run start:hmr# docker way which is recommended
docker-compose -f ./docker/docker-compose.dev.yml up --build
# real time service, check the new message in message module after running below command
curl -H 'Content-Type: application/json' \
--data-binary '{ "email": "yourname@yourdomain.com", "message": "Hello FAMN" }' \
http://localhost:3030/messages/'Go to http://localhost:3030 with default created user mo@po.da, password do
docker-compose -f ./docker/docker-compose.prod.yml up --build -d# build client for dev
yarn run build:client:dev
# build client for prod
yarn run build:client:prod
# build client with AOT for prod
yarn run build:client:aot:prod
# build server for prod
yarn run build:server:prod| Back | FazBrowse Home | New Git URL |