Skip to content

tarlepp/angular-sailsjs-boilerplate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

'Boilerplate' for AngularJS + Sails.js

Why?

Modern web applications has separated front- and backend sides to use. This 'boilerplate' present one way to make your application which have fully separated back- and frontend sides. And really this is more than just a boilerplate, proper term would be 'example application'.

Main goals of this boilerplate

  • Separate back- and frontend development
  • Authenticate with backend (possible multiple ways: local, github, twitter, etc.)
  • Power of AngularJS + WebSockets
  • Simple examples how to use these
  • Provide real start point of new applications

Directory structure

  • backend = Sails.js server, just API nothing else repository
  • frontend = Angular SPA, just frontend side repository

Also note that these 'directories' are just submodules to another repos

Backend

GitHub version Build Status Dependency Status devDependency Status

For backend side this boilerplate uses Sails.js (imho awesome). See more info at https://github.com/balderdashy/sails I have just done some small tweaks to generic workflow of sails nothing else. Backend side of this 'boilerplate' is served on separate repository https://github.com/tarlepp/angular-sailsjs-boilerplate-backend

Frontend

GitHub version Build Status Dependency Status devDependency Status

Boilerplate uses slush-angular for frontend (AngularJS using Google Angular App Structure Recommendations). See more info at https://github.com/slushjs/slush-angular This library is awesome to distribute frontend. Frontend side of this 'boilerplate' is served on separate repository https://github.com/tarlepp/angular-sailsjs-boilerplate-frontend

Used libraries, guides, etc.

Installation

First of all you have to install npm and node.js to your box. Installation instructions can be found here.

After that you need to install bower, gulp and sails main packages to make all things to happen. These can be installed with following commands on your *nix box.

sudo npm install bower gulp sails -g

After that you need to download codes of this project to your computer, please follow instructions below.

Back- and frontend installation

Navigate yourself to directory where you downloaded or cloned this repo and run following command on shell:

npm install

That will install all needed packages for back- and frontend. If this won't work you could try first to initialize back- and frontend submodules with following command:

git submodule update --init --recursive

Also you might need to run npm install command on each of those directories (backend and frontend).

Configuration

You can configure your backend and frontend applications to use your environment specified settings. Basically by default you don't need to make any configurations at all. With default configuration backend will be run on http://localhost:1337 and frontend on http://localhost:3001 (development) http://localhost:3000 (production).

Backend

There is an example of backend configuration file on following path.

/backend/config/local_example.js

Just copy this to /backend/config/local.js and make necessary changes to it. Note that this local.js file is in .gitignore so it won't go to VCS at any point.

Frontend

There is an example of front configuration file on following path.

/frontend/config/config_example.json

Just copy this to /frontend/config/config.json and make necessary changes to it. Note that this config.json file is in .gitignore so it won't go to VCS at any point.

Notes

If you're changing your backend API url to another than http://localhost:1337 you need to make frontend/config/config.json with proper content on it. Use that example file as start.

Running of this project

You have to start both backend and frontend servers to run this project. You can do this by running following command on your project root directory:

npm start

This will start back- and frontend applications for you. And if you need to start those separately see following docs about that.

Backend

cd backend
sails lift

This will start sails.js server on defined port. By default this is accessible from http://localhost:1337 url. If you try that with your browser you should only see page that contains Not Found message on it. This means that everything is ok.

Frontend

Development
cd frontend
gulp serve

This will start simple web server that you can use within developing frontend side. By default this is accessible from http://localhost:3001 url. You should be see login page if you try that url with your browser.

Deployment

As in production

cd frontend
gulp dist

This will create a deployment code to frontend/dist folder. After that you can serve those static HTML, CSS, Javascript and asset files by any web server you like (Apache, nginx, IIS, etc.). For testing this production ready code you can also use gulp production command which will serve those dist files. By default this is accessible from http://localhost:3000 url.

Possible failures

Below is small list of possible failures that can occur while trying this POC.

  1. Sails won't lift and you get error message like: Fatal error: watch ENOSPC
  2. Frontend side is missing some 3rd party libraries. eg. browser console is full of some errors.
    • Try to install bower packages manually by command bower install in frontend directory.
  3. When running gulp serve from the frontend directory an error of 'scss-lint' is not recognized.
    • Try running gem install scss-lint from the frontend directory.

Demo

This might be up and running... or not. http://wunder.sytes.net:3000/

Who is using this?

If you're using this please make PR and add your project to this list.

Author

Tarmo Leppänen

License

The MIT License (MIT)

Copyright (c) 2015 Tarmo Leppänen

About

'Boilerplate' for AngularJS + Sails.js

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published