All Projects → vitorbritto → node-skeleton

vitorbritto / node-skeleton

Licence: other
A really simple boilerplate for new projects. (NodeJS version)

Programming Languages

CSS
56736 projects
javascript
184084 projects - #8 most used programming language

Skeleton - Node.js Version Build Status

Instruções em português

A really simple boilerplate for new projects.

Getting Started

To start a new project:

git clone git://github.com/vitorbritto/node-skeleton.git projectname && cd $_
npm i && node skeleton

Improving your Workflow

You can use Grunt to automate your tasks and improve your Workflow. To do that, simply execute npm install and then run one of the tasks bellow:

  • grunt: watch for changes on files (Live Reload included).
  • grunt build: minify, concat and lint files.

Legacy Support

If you want to support HTML5 tags, Media Queries and pseudo-selectors for Old Browsers (IE6-8) with html5shiv and respondjs, just place the conditional comment before the tag </head>.

<!--[if lt IE 9]>
    <script src="https://github.com//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.6.2/html5shiv.min.js"></script>
    <script src="https://github.com//cdnjs.cloudflare.com/ajax/libs/respond.js/1.3.0/respond.min.js"></script>
    <script src="https://github.com//cdnjs.cloudflare.com/ajax/libs/selectivizr/1.0.2/selectivizr-min.js"></script>
<![endif]-->

Modernizr already do that for you. This is just an alternative method.

License

MIT License © Vitor Britto

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].