1.0.1 • Published 7 years ago

html-init v1.0.1

Weekly downloads
2
License
ISC
Repository
github
Last release
7 years ago

html-init

Build Status dependencies Status npm version npm downloads GitHub commit activity Codacy Badge

Install as a command line tool with npm install -g html-init. To create a basic HTML file that looks like this in the directory you're in, run html-init path/to/file.html.

The HTML file contains the following:

<!DOCTYPE html>
  <html>
    <head>
      <title>Title</title>
    </head>
    <body>
    </body>
  </html>

For example, html-init index.html will create a new HTML file index.html.