6.0.0 • Published 6 years ago

rapid-build v6.0.0

Weekly downloads
140
License
MIT
Repository
github
Last release
6 years ago

rapid-build

rapid-build.io
Releases are documented here changelog.
Requirements: git and Node.js version >= 4.0.0

Installation

$ npm install rapid-build -g

Description

Rapidly develop distributable client and server side packages. rapid-build currently supports the following technologies:

Key concepts:
  • src this is where you develop, place your working files here these files should be under a version control system (ex)
  • dist this is where your distributable package will be built once built you can ship them off to places like a webserver these packages should not be under version control instead use a ci system (ex) to build and deploy your packages
  • client * directory for all your client side code
  • server * directory for all your server side code

How To Use

Run in terminal from the root of your project.

# Run build by executing one of the following in terminal from root of your project:
# rapid-build
# rapid-build dev  | dev:test    | dev:test:client  | dev:test:server
# rapid-build prod | prod:test   | prod:test:client | prod:test:server | prod:server
# rapid-build test | test:client | test:server
# ----------------------------------------------------------------------------------
$ rapid-build
Customizing Your Builds:
  • More than likely you will need to customize your builds. (No problem!)
  • There are many build options available for you. (see options api)
  • Create rapid-build.json in the root of your project.
  • File name must be rapid-build and can be cson, json or js file.
  • Below is the basic structure for your rapid-build.json (place build options here). Common options are for all build types. Dev options are for default, dev and test builds. * Prod options are for prod build.
{
	"common": {},
	"dev": {},
	"prod": {}
}

Directory Structure

Must have package.json, everything else is optional.
Rapid build will be expecting this directory structure.

dist/ (generated distributable folder created by rapid-build)
src/
├── client/
│   ├── bower_components/ (generated folder via bower.json)
│   ├── images/
│   │   └── gif, jpg, jpeg, png, svg, etc..
│   ├── libs/
│   │   └── (3rd party libraries that aren't bower components)
│   ├── scripts/
│   │   └── coffee, es6, js or typescript
│   ├── styles/
│   │   └── css, less, sass or scss
│   ├── test/
│   │   └── coffee, es6 or js
│   ├── views/
│   │   └── html
│   ├── bower.json (for bower components)
│   └── spa.html (see options.spa.src.filePath)
└── server/
    ├── test/
    │   └── coffee, es6 or js
    ├── package.json (for server node modules)
    └── routes.{coffee,es6,js,ts} (see options.dist.server.fileName)
package.json (required - must have name and version)
rapid-build.json (build options - can be cson, json or js file)

Build Types

Common Tasks (all 4 builds do the following tasks first):

  1. install bower components (if they aren't installed)
  2. copy the following files to the dist directory
    • css - (client)
    • images - (client)
    • js - (client and server)
    • html - (client)
    • libs - (client) (everything in the libs directory)
    • bower components - (client) (files in every bower.json's main prop)
    • node modules - (server) (node_modules directory installed via server package.json)
    • compile then copy to dist coffee -> js - (client and server) es6 -> js - (client and server) typescript -> js - (client and server) less -> css - (client) * sass -> css - (client)

Default Build:

  1. run common tasks (see above)
  2. build the spa.html file then copy to dist/client/
  3. start the server
  4. open the browser

Dev Build:

  1. run common tasks (see above)
  2. build the spa.html file then copy to dist/client/
  3. start the server
  4. open the browser
  5. fireup the file watchers (on saving a file, the browser will refresh)

Prod Build:

  1. run common tasks (see above)
  2. minify the application files
    • css
    • html
    • js
  3. concatenate files
    • css (styles.min.css created)
    • js (scripts.min.css created)
  4. build the spa.html file
  5. minify the spa.html file
  6. cache bust the files (client)
  7. minify server js files

Test Build:

  1. run common tasks (see above)
  2. copy client test scripts to dist/client/
  3. run client tests in PhantomJS
  4. copy server test scripts to dist/server/
  5. run server tests using jasmine

Build Options

Default builds don't suffice, no problem!
Below are a list of options you can use to customize your builds (place in rapid-build.json).

# Example: options.ports.server = 5000
# Options is an object, you can set the following properties:
# -----------------------------------------------------------
# build[client|server]                                   = (boolean) both default to true = atleast one is required to be true
# dist.dir                                               = (string)  defaults to 'dist'
# dist.client.dir                                        = (string)  defaults to 'client'
# dist.client[images|scripts|styles|test|views].dir      = (string)  defaults to property name
# dist.client.bower.dir                                  = (string)  defaults to 'bower_components'
# dist.client.libs.dir                                   = (string)  defaults to 'libs' = 3rd party libraries that aren't bower components
# dist.paths.absolute                                    = (boolean) defaults to true = set to false to create relative urls instead of absolute for link tag's href, script tag's src and urls in css
# dist.server.dir                                        = (string)  defaults to 'server'
# dist.server.test.dir                                   = (string)  defaults to 'test'
# dist.server.fileName                                   = (string)  defaults to 'routes.js': this is the server's entry script
# src.dir                                                = (string)  defaults to 'src'
# src.client.dir                                         = (string)  defaults to 'client'
# src.client[images|scripts|styles|test|views].dir       = (string)  defaults to property name
# src.client.bower.dir                                   = (string)  defaults to 'bower_components'
# src.client.libs.dir                                    = (string)  defaults to 'libs' = 3rd party libraries that aren't bower components
# src.server.dir                                         = (string)  defaults to 'server'
# src.server.test.dir                                    = (string)  defaults to 'test'
# ports.server                                           = (int)     defaults to 3000, web server port
# ports.reload                                           = (int)     defaults to 3001, browsersync server port
# ports.reloadUI                                         = (int)     defaults to 3002, browsersync's user-interface server port
# ports.test                                             = (int)     defaults to 9876, karma server port
# order[scripts|styles][first|last]                      = (array of strings) = file paths
# angular.modules                                        = (array of strings) = additional angular modules to load, already loaded are ['ngResource', 'ngRoute', 'ngSanitize'] and 'ngMockE2E' based on angular.httpBackend options
# angular.moduleName                                     = (string)  defaults to 'app' = application module name, value for ng-app
# angular.version                                        = (string)  defaults to '1.x' = semver version required
# angular.bootstrap                                      = (boolean or string) defaults to false = bootstrap angular instead of using ng-app in spa.html, provide true to bootstrap on document or provide a css selector to bootstrap on a dom element
# angular.httpBackend.dev                                = (boolean) defaults to false = set to true to enable httpBackend for dev and default build
# angular.httpBackend.prod                               = (boolean) defaults to false = set to true to enable httpBackend for prod build
# angular.httpBackend.dir                                = (string)  defaults to 'mocks' = directory inside your client scripts directory
# angular.templateCache.dev                              = (boolean) defaults to false = use template cache when running default and dev task
# angular.templateCache.urlPrefix                        = (string)  prefix for template urls
# angular.templateCache.useAbsolutePaths                 = (boolean) defaults to false = prefix template urls with a '/'
# angular.ngFormify                                      = (boolean) defaults to false = set to true to replace all html form tags with ng:form in client dist, useful if your application is going to be wrapped in a global form
# spa.autoInject                                         = (array of strings) defaults to ['all'] = the build will automatically inject the following into your spa.html: ['clickjacking', 'moduleName', 'ngCloakStyles', 'scripts', 'styles'], set to false to disable or provide options you want injected
# spa.title                                              = (string)  defaults to package.json name or 'Application' = html title tag value
# spa.description                                        = (string)  defaults to package.json description = html meta description tag value
# spa.src.filePath                                       = (string)  set if you want to use your own spa file and not the build system's (file must be located in your client src directory)
# spa.dist.fileName                                      = (string)  defaults to file name of spa.src.filePath or 'spa.html' = provide if you want the dist spa file to be named differently, example: 'index.html'
# spa.placeholders                                       = (array of strings) = set to retain spa file placeholders, optional values are: ['clickjacking', 'description', 'moduleName', 'ngCloakStyles', 'scripts', 'styles', 'title'] or ['all']
# spa[scripts|styles].attrs                              = (object) = set to add additional attributes to the link (styles) and script tags that the build outputs in spa.html or modify the default attributes: scripts = { src }, styles = { rel, href }
# minify.cacheBust                                       = (boolean) defaults to true = for prod build, ensures the user always receives the latest files, adds an md5 checksum to the client files before their extension
# minify.css.styles                                      = (boolean) defaults to true = for prod build, minify the css
# minify.css.fileName                                    = (string)  defaults to 'styles.min.css' = provide to name the minified css file differently
# minify.css.splitMinFile                                = (boolean) defaults to false = for prod build, task for ie9 and below, split styles.min.css into multiple files if selector count > 4,095
# minify.html.views                                      = (boolean) defaults to true = for prod build, minify the html
# minify.html.templateCache                              = (boolean) defaults to true = for prod build, use the template cache
# minify.html.options                                    = (object)  defaults to { collapseWhitespace: true, removeComments: true, removeEmptyElements: false, removeEmptyAttributes: false } for details see: https://git.io/vVyAC
# minify.spa.file                                        = (boolean) defaults to true = for prod build, minify the spa.html file
# minify.server.json.enable                              = (boolean) defaults to true = set to false to not minify your server json files
# minify.client.js.fileName                              = (string)  defaults to 'scripts.min.js' = provide to name the minified js file differently
# minify[client|server].js.enable                        = (boolean) defaults to true = set to false to not minify your js client and or server files
# minify[client|server].js.es6                           = (boolean) defaults to false = set to true if your js files are written in ES6+
# minify[client|server].js.options                       = (object)  default minifier is ES5 = set to configure the minifier, find available options here: ES5 (https://git.io/vFbk9) or ES6+ (https://git.io/vFbkj)
# exclude.spa                                            = (boolean) defaults to false = set to true to exclude spa.html from client dist
# exclude.angular.files                                  = (boolean) defaults to false = set to true to exclude the angular files that come with rapid-build from dist (lib and modules)
# exclude.angular.modules                                = (boolean) defaults to false = set to true to exclude injecting the angular modules that come with rapid-build ['ngResource', 'ngRoute', 'ngSanitize']
# exclude.default.client.files                           = (boolean) defaults to false = set to true to exclude the client files rapid-build sends to the dist client directory
# exclude.default.server.files                           = (boolean) defaults to false = set to true to exclude the server files rapid-build sends to the dist server directory
# exclude.from.cacheBust                                 = (array of strings) = file paths: exclude files from the cache bust
# exclude.from.minFile[scripts|styles]                   = (array of strings) = file paths: exclude script or style files from automatically being generated in the scripts.min.js or styles.min.css file
# exclude.from.spaFile[scripts|styles]                   = (array of strings) = file paths: exclude script or style files from automatically being generated in the spa.html file
# exclude.from.spaFile.angular.files                     = (boolean) defaults to false = set to true to exclude the angular files from spa.html the build includes (angular library and modules ngResource, ngRoute and ngSanitize)
# exclude.from.dist[client|server]                       = (array of strings) = file paths: exclude client or server files from the dist folder
# test.client.browsers                                   = (array of browser names) = phantomjs will run by default, optional browser names are ['chrome', 'firefox', 'ie', 'safari']
# httpProxy                                              = (array of objects) = object format: { context: array or string, options: object } for details see: https://git.io/vVyA0
# browser.open                                           = (boolean) defaults to true = open the browser once the build completes, applies to builds: default, dev and prod:server
# browser.reload                                         = (boolean) defaults to true = reloads the browser once you save your src file, only applies to dev builds
# extra.copy[client|server]                              = (array of strings) = file paths: additional files to copy to dist/client and or dist/server that the build didn't copy
# extra.compile.client[coffee|es6|htmlScripts|less|sass] = (array of strings) = file paths: additional files to compile to dist/client that the build didn't compile
# extra.compile.server[less|sass]                        = (array of strings) = file paths: additional files to compile to dist/server that the build didn't compile
# extra.minify.client[css|js]                            = (array of strings) = file paths: additional files to minify in dist/client that the build didn't minify (by default, the build does not minify files in libs or bower_components)
# extra.watch[client|server]                             = (array of strings) = file paths: additional files to watch in src/client and or src/server that the build didn't watch
# security.client.clickjacking                           = (boolean) defaults to true = includes a clickjacking defense script in the default spa.html (set to false to disable)
# inline.htmlAssets.enable                               = (boolean) defaults to false = set to true to inline html assets
# inline.htmlAssets.dev                                  = (boolean) defaults to false = set to true to run on dev build
# inline.htmlAssets.options.attribute                    = (string) by default all html assets will be inlined unless an attribute name is provided (place attribute name on html tags/assets you wish to inline)
# inline.htmlAssets.options.svgAsImage                   = (boolean) defaults to false = set to true to convert <img src="*.svg"> to <img> and not <svg> tag
# inline.htmlAssets.options.ignore                       = (array of strings) disable inlining based on file extension and/or html tag
# inline.jsHtmlImports.client.enable                     = (boolean) defaults to false = set to true to inline js html imports
# compile.htmlScripts.client.enable                      = (boolean) defaults to false = set to true to compile inline html scripts that have es6 code to es5
# compile.typescript[client|server].enable               = (boolean) defaults to false = set to true to enable client and or server typescript compiler
# compile.typescript.client.entries                      = (array of strings) defaults to ['main.ts'] = Entry point(s) of your app. This file(s) is required. Browserify is used for module loading. Must use commonjs for typescript's module code generation.
# ==========================================================================================================================================================================================================================================================================================================

Develop Rapidly!

Shake and Bake!

6.0.0

6 years ago

5.0.3

6 years ago

5.0.2

6 years ago

5.0.1

6 years ago

5.0.0

6 years ago

4.0.1

6 years ago

4.0.0

6 years ago

3.1.2

6 years ago

3.1.1

6 years ago

3.1.0

6 years ago

3.0.1

7 years ago

3.0.0

7 years ago

2.2.1

7 years ago

2.2.0

7 years ago

2.1.0

7 years ago

2.0.0

7 years ago

1.1.1

7 years ago

1.1.0

7 years ago

1.0.0

7 years ago

0.72.0

7 years ago

0.71.0

7 years ago

0.70.0

7 years ago

0.69.5

7 years ago

0.69.4

7 years ago

0.69.3

7 years ago

0.69.2

8 years ago

0.69.1

8 years ago

0.69.0

8 years ago

0.68.1

8 years ago

0.68.0

8 years ago

0.67.3

8 years ago

0.67.2

8 years ago

0.67.1

8 years ago

0.67.0

8 years ago

0.66.0

8 years ago

0.65.0

8 years ago

0.64.0

8 years ago

0.63.0

8 years ago

0.62.0

8 years ago

0.61.2

8 years ago

0.61.1

8 years ago

0.61.0

8 years ago

0.60.1

8 years ago

0.60.0

8 years ago

0.59.1

8 years ago

0.59.0

8 years ago

0.58.2

8 years ago

0.58.1

8 years ago

0.58.0

8 years ago

0.57.0

8 years ago

0.56.1

8 years ago

0.56.0

8 years ago

0.55.0

8 years ago

0.54.0

8 years ago

0.53.2

8 years ago

0.53.1

8 years ago

0.53.0

8 years ago

0.52.1

8 years ago

0.52.0

8 years ago

0.51.2

8 years ago

0.51.1

8 years ago

0.51.0

8 years ago

0.50.0

8 years ago

0.49.0

8 years ago

0.48.0

8 years ago

0.47.0

8 years ago

0.46.0

8 years ago

0.45.0

8 years ago

0.44.0

8 years ago

0.43.1

8 years ago

0.43.0

8 years ago

0.42.3

8 years ago

0.42.2

9 years ago

0.42.1

9 years ago

0.42.0

9 years ago

0.41.0

9 years ago

0.40.1

9 years ago

0.40.0

9 years ago

0.39.0

9 years ago

0.38.0

9 years ago

0.37.0

9 years ago

0.36.0

9 years ago

0.35.0

9 years ago

0.34.0

9 years ago

0.33.1

9 years ago

0.33.0

9 years ago

0.32.0

9 years ago

0.31.6

9 years ago

0.31.5

9 years ago

0.31.4

9 years ago

0.31.3

9 years ago

0.31.2

9 years ago

0.31.1

9 years ago

0.31.0

9 years ago

0.30.0

9 years ago

0.29.0

9 years ago

0.28.0

9 years ago

0.27.0

9 years ago

0.26.2

9 years ago

0.26.1

9 years ago

0.26.0

9 years ago

0.25.0

9 years ago

0.24.0

9 years ago

0.23.0

9 years ago

0.22.0

9 years ago

0.21.0

9 years ago

0.20.0

9 years ago

0.19.0

9 years ago

0.18.1

9 years ago

0.18.0

9 years ago

0.17.1

9 years ago

0.17.0

9 years ago

0.16.0

9 years ago

0.15.0

9 years ago

0.14.0

9 years ago

0.13.0

9 years ago

0.12.0

9 years ago

0.11.1

9 years ago

0.11.0

9 years ago

0.10.0

9 years ago

0.9.0

9 years ago

0.8.0

9 years ago

0.7.0

9 years ago

0.6.0

9 years ago

0.5.0

9 years ago

0.4.0

9 years ago

0.3.0

9 years ago

0.2.0

9 years ago

0.1.4

9 years ago

0.1.3

9 years ago

0.1.2

9 years ago

0.1.1

9 years ago

0.1.0

9 years ago

0.0.0

9 years ago