A template for starting front-end projects. Webpack for require
system, build
pipeline, and development server. Boostrap and Handlebars.js included. No
front-end frameworks included.
- Download this template.
- Do Not Fork And Clone
- Click the "Clone or Download" button and select "Download Zip".
- Move to the
wdi/projects
directory, then unzip the template directory withunzip /Users/<user-name>/Downloads/browser-template-master.zip
. - Rename the template directory from
browser-template-master
to<project-name>-client
. - Empty
README.md
and fill with your own content. - Replace all instances of
ga-wdi-boston.browser-template
with the name of your project.- You can search for all instances of text in Atom by pressing
commant + shift + f
on Mac orctrl + shift + f
on WSL.
- You can search for all instances of text in Atom by pressing
- Move into the new project and
git init
. - Add all of the files in your project with the command
git add --all
.- Note: This is the only time you should run this command!
- Commit all of your files with the command
git commit
.- Your commit title should read
Initial commit
.
- Your commit title should read
- Install dependencies with
npm install
. - Create a new repository on github.com, not GitHub Enterprise.
- Name the new repository with the same name used on Step 3.
- Follow the instructions on your new repository's setup page. For details on how to push to Github, refer to the section on Github entitled "…or push an existing repository from the command line." Further documentation can be found here.
Developers should store JavaScript files in assets/scripts
.
The "manifest" or entry-point is
assets/scripts/app.js
. In general, only
application initialization goes in this file. It's normal for developers to
start putting all code in this file, but encourage them to break out different
responsibilities and use the require
syntax put references where they're
needed.
Developers should set apiUrls.production
and apiUrls.development
in
assets/scripts/config.js
. With
apiUrls
set, developers may rely on apiUrl
as the base for API
URLs.
Developers should store styles in assets/styles
and load them
from assets/styles/index.scss
. Bootstrap version 3 is
included in this template.
Developers should use getFormFields to retrieve form data to send to an API.
To deploy a browser-template based SPA, run grunt deploy
.
To add images to your project, you must store them in the public
directory.
To use the image in HTML or CSS, write the path to the image like this:
<img src="public/cat.jpg">
or
#my-cool-div {
background-image: url('public/cat.jpg')
}
Note that there's no ./
or /
in front of public/filename.jpg
.
To add custom fonts to your app, you can either use a CDN like Google Fonts, or
you can download the fonts and save them in the public
directory. If you use
the former method, follow the directions on the website providing the fonts.
For local fonts, put the files in public
, and then import and use them in a
.scss
file like this:
@font-face {
font-family: 'Nature Beauty';
src: url('public/Nature-Beauty.ttf') format('truetype');
}
.element-with-custom-font {
font-family: 'Nature Beauty';
}
Developers should run these often!
grunt nag
or justgrunt
: runs code quality analysis tools on your code and complainsgrunt make-standard
: reformats all your code in the JavaScript Standard Stylegrunt <server|serve|s>
: generates bundles, watches, and livereloadsgrunt build
: place bundled styles and scripts whereindex.html
can find themgrunt deploy
: builds and deploys master branch
- All content is licensed under a CCBYNCSA 4.0 license.
- All software code is licensed under GNU GPLv3. For commercial use or alternative licensing, please contact legal@ga.co.