majornorth / bloc-chat

An Angular and Firebase app that allows users to send and receives messages in real time

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Bloc Base Project

A base for Bloc frontend projects.

Configuration

Configuring this project should be consistent across Nitrous, Mac (local), and Vagrant.

Start by cloning the repository

$ git clone https://github.com/Bloc/base-frontend-project.git <your-frontend-project-name>

The project uses Grunt to run tasks (detailed below); start by installing the Grunt Command Line Interface (grunt-cli) globally on your machine.

$ npm install -g grunt-cli

Once that's complete, install the remaining project dependencies by running

$ npm install

Grunt

This project base uses Grunt to serve, build and watch project files in development. We've configured Grunt to work for you, but if you're interested in learning more about how Grunt works, look at Grunt's Getting Started Guide or watch Egghead's introduction to Grunt video.

Running the application

Run the application using

$ grunt

The application runs on port 3000 (configured in the Gruntfile.js). To change the port, modify the number highlighted below

connect: {
  server: {
    options: {
      // Change this value here to the desired port number
      port: 3000,
      hostname: 'localhost',
      base: './dist',
      useAvailablePort: true
    }
  }
}

Directory structure and Grunt

app/
 |__images/
 |   |__bloc-image-white.png
 |__pages/
 |   |__index.html
 |__sass/
 |   |__styles.scss
 |__scripts/
 |   |__app.js
 |__templates/
 |   |__home.html

Grunt looks for files using a defined pattern so that it knows what to compile and copy and where to put it. To edit the files that Grunt watches, look at the array of files in the watch task in Gruntfile.js. The default watched files are

  files: [
      './app/images/*.{png,jpg,jpeg}',
      './app/scripts/**/*.js',
      './app/sass/**/*.scss',
      './app/pages/**/*.html',
      './app/templates/**/*.html',
      'Gruntfile.js'
  ]

Add any files or directories to Grunt's watch task using the Grunt conventions for performing file operations.

Images

Add images to the app/images directory. To reference images in HTML, use the path images/<image file name>.jpg. For example, to include the image called bloc-white-logo.png, the path for the src attribute in the HTML would be:

<img src="/images/bloc-white-logo.png">

Note: A sample image has been added to app/images. To remove the image from the application, run the following command from the root of repo:

$ rm -f app/images/bloc-white-logo.png

Sass

All Sass files must be included in the sass directory. When you create new Sass files in addition to styles.scss, make sure that you include them in styles.scss with an @import statement. For example, if you create a home.scss file to match our home.html template, include it in styles.scss with

@import "home";

and it will be automatically populated in the compiled CSS file when you save any Sass file.

Difference between Pages and Templates

The pages directory is where you should keep application layouts. That is, these are full pages where you'll put a base HTML structure that might hold a ui-view or another dynamic block of HTML based on differing routes, app states, etc.

Templates are partials, or smaller sets of HTML that will be populated into the pages. The distinction is similar to the difference between index.html and the HTML files in the templates directory in Bloc Jams.

Grunt plugins

A list of the plugins used by Grunt and what they're used for.

Browserify

Browserify enables the use of Node's require() syntax in browser files.

Sass

Grunt Sass for compiling Sass into CSS.

Autoprefixer

Autoprefixer allows you to write CSS free of worrying about vendor prefixes. No need to add -webkit, -moz, -ms, etc to the beginning of your CSS3, because the Grunt Autoprefixer task takes care of it for you.

Watch

Grunt watch watches for changes to file content and then executes Grunt tasks when a change is detected. Watch is useful for tasks like continuous unit testing (every time you save a file, that new file is tested), refreshing your browser automatically when changes are reflected, or compiling preprocessing languages like Sass or Jade into CSS or HTML.

Copy

Grunt copy allows you to copy files from development folders like images, fonts or other static assets and put them in the folder that will be served on the frontend of your application.

Clean

Grunt clean "cleans" or removes all files in your destination folder (the folder where you'll put your officially served content for your application) so that logic in your stylesheets, templates or scripts isn't accidentally overridden by previous code in the directory.

Hapi

Grunt Hapi is a task that runs a server using HapiJS. Happy is a Node Web Application framework with robust configuration options. Using Hapi allows us to use Angular for our application routing instead of relying on a backend to handle template requests.

About

An Angular and Firebase app that allows users to send and receives messages in real time

License:Apache License 2.0


Languages

Language:JavaScript 76.7%Language:HTML 23.3%