All Projects → h5bp → Create Html5 Boilerplate

h5bp / Create Html5 Boilerplate

Licence: mit
npx quick start for html5-boilerplate

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Create Html5 Boilerplate

Vue Electron Typescript Quickstart
A boilerplate of Electron app that uses Vue in TypeScript.
Stars: ✭ 22 (-83.82%)
Mutual labels:  quickstart
Auth0 Express Api Samples
Auth0 Integration Samples for Node Express REST API Services
Stars: ✭ 68 (-50%)
Mutual labels:  quickstart
Nativescript App Templates
Monorepo for NativeScript app templates
Stars: ✭ 108 (-20.59%)
Mutual labels:  quickstart
Runnerty Quick Start
Runnerty quick start example project
Stars: ✭ 11 (-91.91%)
Mutual labels:  quickstart
Examples
Demo applications and code examples for Confluent Platform and Apache Kafka
Stars: ✭ 571 (+319.85%)
Mutual labels:  quickstart
Auth0 React Native Sample
Auth0 Integration Samples for React Native
Stars: ✭ 77 (-43.38%)
Mutual labels:  quickstart
Active Directory Aspnetcore Webapp Openidconnect V2
An ASP.NET Core Web App which lets sign-in users (including in your org, many orgs, orgs + personal accounts, sovereign clouds) and call Web APIs (including Microsoft Graph)
Stars: ✭ 671 (+393.38%)
Mutual labels:  quickstart
Auth0 Nodejs Webapp Sample
Auth0 Integration Samples for Node Web Applications
Stars: ✭ 117 (-13.97%)
Mutual labels:  quickstart
Gorsk
🔥 Idiomatic Golang Restful Starter Kit
Stars: ✭ 1,108 (+714.71%)
Mutual labels:  quickstart
Analytics Vue
The hassle-free way to integrate analytics into your Vue application.
Stars: ✭ 87 (-36.03%)
Mutual labels:  quickstart
Lychee Openshift Quickstart
OpenShift Lychee Quickstart
Stars: ✭ 13 (-90.44%)
Mutual labels:  quickstart
Start laravel
Let this application be your quick start to Laravel, It'll help you to build your app structure and show you each component of Laravel and how to best practice them.
Stars: ✭ 42 (-69.12%)
Mutual labels:  quickstart
Javaee8 Essentials Archetype
A quickstart maven archetype for creating greenfield Jakarta EE and MicroProfile projects
Stars: ✭ 79 (-41.91%)
Mutual labels:  quickstart
Wicket Kotlin Quickstart
The Apache Wicket quickstart application rewritten in Kotlin language
Stars: ✭ 8 (-94.12%)
Mutual labels:  quickstart
Pyspark Cheatsheet
🐍 Quick reference guide to common patterns & functions in PySpark.
Stars: ✭ 108 (-20.59%)
Mutual labels:  quickstart
Aws Cognito Angular Quickstart
An Angular(v5)-based QuickStart single-page app utilizing Amazon Cognito, S3, and DynamoDB (Serverless architecture)
Stars: ✭ 685 (+403.68%)
Mutual labels:  quickstart
Auth0 Python Api Samples
Auth0 Integration Samples for Python REST API Services using Flask
Stars: ✭ 70 (-48.53%)
Mutual labels:  quickstart
Auth0 Javascript Samples
Auth0 Integration Samples for Vanilla JavaScript Applications
Stars: ✭ 130 (-4.41%)
Mutual labels:  quickstart
Auth0 Aspnetcore Webapi Samples
Auth0 Integration Samples for ASP.NET Core WebAPI Services
Stars: ✭ 109 (-19.85%)
Mutual labels:  quickstart
Angular Quick Starter
Учебные материалы на русском
Stars: ✭ 86 (-36.76%)
Mutual labels:  quickstart

Create HTML5 Boilerplate

Coverage Status code style: prettier Total alerts

Quick start for HTML5 Boilerplate. Get up and running with one command.

Getting Started

You can get started using one of three options- npx, npm init, or yarn create Using npx

npx create-html5-boilerplate new-site
cd new-site
npm install
npm start

Using npm init

npm init html5-boilerplate new-site
cd new-site
npm install
npm start

Using yarn

yarn create html5-boilerplate new-site
cd new-site
yarn install
yarn start

These commands are equivalent and do the following:

  1. Download and install the latest version of HTML5 Boilerplate
  2. Installs dependencies
  3. Bundles site assets and start a web server using Parcel
  4. Opens a web browser pointed to http://localhost:1234/

Requirements

create-html5-boilerplate is cross-platform. It works wherever node and npm work. The only requirements are for npx, which requires npm version 5.2 or greater and npm init which requires an npm version greater than 6.0. If you're stuck on an older version of npm you can still use create-html5-boilerplate by running the following command to install the project globally.

npm install -g create-html5-boilerplate

Then you can use create-html5-boilerplate as in the following example

create-html5-boilerplate new-site
cd new-site
npm install
npm start

Installing Specific Versions

You can also install a specific version:

npx create-html5-boilerplate new-site --release=7.2.0
cd new-site
npm install
npm start

CONTRIBUTING

Setting Up a Local Copy

  1. Clone the repo with git clone https://github.com/h5bp/create-html5-boilerplate.git
  2. Run npm install in the root create-html5-boilerplate folder.
  3. Run npm link to make npm run local copy instead of downloading from registry
  4. Now you can use npm init html5-boilerplate and npx create-html5-boilerplate

note: you can use npx create-html5-boilerplate ./out/example from create-html5-boilerplate without running npm link also its possible to run directly NodeJS entry point node index.js ./out/example or npm start ./out is git ignored folder, so you should use this folder for tests.

If you want to try out the end-to-end flow with the global CLI, you can do this too:

npx create-html5-boilerplate ./out/new-site
cd new-site
npm install
npm start

Tests

Tests are written using jest and located in tests/test.js run npm test

run coverage reports npm run coverage

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].