rasheedamir / generator-jhipster

Hipster stack for Java developers. Yeoman + Maven + Spring + AngularJS in one handy generator.
http://jhipster.github.io
Other
0 stars 0 forks source link

Build Status

Full documentation and information is available on our website at http://jhipster.github.io/

Sync a fork

Basic Installation

First, you'll need to install yo and other required tools:

npm install -g yo bower grunt-cli

npm is the package manager for Node.js and comes bundled with it.

Grunt and Grunt plugins are installed and managed via npm, the Node.js package manager.

Yo

Yo is maintained by the Yeoman project and offers web application scaffolding, utilizing scaffolding templates we refer to as generators. You typically install yo and any generators you think you might use via npm.

package.json

This file is used by npm to store metadata for projects published as npm modules. You will list grunt and the Grunt plugins your project needs as devDependencies in this file.

The package.json file belongs in the root directory of your project, next to the Gruntfile, and should be committed with your project source. Running npm install in the same folder as a package.json file will install the correct version of each dependency listed therein.

Grunt

Gruntfile This file is named Gruntfile.js or Gruntfile.coffee and is used to configure or define tasks and load Grunt plugins. The Gruntfile.js or Gruntfile.coffee file is a valid JavaScript or CoffeeScript file that belongs in the root directory of your project, next to the package.json file, and should be committed with your project source.

A Gruntfile is comprised of the following parts:

  1. The "wrapper" function
  2. Project and task configuration
  3. Loading Grunt plugins and tasks
  4. Custom tasks

Read more here

Recommended: Grunt Course

JSHint

JSHint is a community-driven tool to detect errors and potential problems in JavaScript code and to enforce your team's coding conventions. It is very flexible so you can easily adjust it to your particular coding guidelines and the environment you expect your code to execute in. The static code analysis and code quality tools such as JSHint help reduce the number of syntax errors and improve the quality of the code.

load-grunt-tasks

require('load-grunt-tasks')(grunt); Load multiple grunt tasks using globbing patterns Usually you would have to load each task one by one, which is unnecessarily cumbersome. This module will read the dependencies/devDependencies/peerDependencies in your package.json and load grunt tasks that match the provided patterns.

For those new to Bower, it’s an unopinionated, generic package manager for the web platform that aims to help with front-end package management. Bower works over git, its packages can be made up of any type of asset HTML/CSS/JS and use any type of transport (CJS/AMD/ES6 modules). It’s currently used by Bootstrap, Normalize, AngularJS and many other open-source projects.

We have a plethora of tools, frameworks, languages, abstractions and platforms!

PhantomJS

PhantomJS is a headless WebKit-based rendering engine and interpreter with a JavaScript API. Think of PhantomJS as a browser that doesn’t have any graphical user interface. PhantomJS can execute HTML, CSS, and JavaScript code. Because PhantomJS is not required to render a browser’s GUI, it can be used in display-less environments (for example, a CI server) to run tests. In our case, Grunt automatically spawns the PhantomJS instance, executes the code of our tests, reads the execution results using the PhantomJS API, and prints them out in the console.

HTML5 Boilerplate

When you start a new project, it's unlikely you start with a blank HTML file. You probably have some kind of starting template, or your IDE builds a rough file with some elements preloaded. That's what HTML5 Boilerplate is: a starter template to use on all your projects. HTML5 Boilerplate is a professional front-end template for building web applications or sites. It's chock-full of cross-browser compatibility features, CSS resets, base styles, and optional server configs to give your project the best possible start.

Recommended : HTML5 Boilerplate Course

Bower

Bower is a package manager for the web which allows you to easily manage dependencies for your projects. This includes assets such as JavaScript, images and CSS. It is maintained by Twitter and the open-source community.

# Search for a dependency in the Bower registry.
$ bower search <dep>

# Install one or more dependencies.
$ bower install <dep>..<depN>

# List out the dependencies you have installed for a project.
$ bower list

# Update a dependency to the latest version available.
$ bower update <dep>

Grunt

Grunt is a task-based command-line tool for JavaScript projects. It can be used to build projects, but also exposes several commands which you will want to use in your workflow.

# Preview an app you have generated (with Livereload).
$ grunt serve

# Run the unit tests for an app.
$ grunt test

# Build an optimized, production-ready version of your app.
$ grunt