Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

grunt-webpage-scaffold

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-webpage-scaffold

Help build the new Webpage project, static resource automatic generation of page demo file and dependence (optional without JS file). Once to initialize grunt, open the default browser to observe the compiled Demo. At the same time will automatically star

  • 0.3.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

grunt-webpage-scaffold

Help build the new Webpage project, static resource automatic generation of page demo file and dependence (optional without JS file). Once to initialize grunt, open the default browser to observe the compiled Demo. At the same time will automatically start the Livereload pattern of development, we can start coding: )

Getting Started

This plugin requires Grunt ~0.4.5

npm install grunt-webpage-scaffold --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-webpage-scaffold');

The "webpage_scaffold" task

Overview

In Gruntfile, you need some config ,for example:

module.exports = (grunt) ->
  grunt.initConfig
    webpage:
      options:
        #coffee: 'coffee/page/'
        js: 'js/page/'
        less: 'less/page/'
        lessCommonCode: '@import "../var";'
        demo: 'demos/'
        demoShowPath: 'http://localhost/git/moc/build/demos/'
        tplPath: '.tpl'

Options

options.js

Type: String Default value: 'js/page/'

A string value that is used to determine where to generate js file. It's 'mutually exclusive with options.coffee

options.coffee

Type: String Default value: ''

A string value that is used to determine where to generate coffee file. It's 'mutually exclusive with options.js

options.less

Type: String Default value: 'less/page/'

A string value that is used to determine where to generate less file.

options.lessCommonCode

Type: String Default value: ''

A string value that is used to write something common into less file at the top.

options.demo

Type: String Default value: 'demo/'

A string value that is used to determine where to generate html demo file.

options.demoShowPath

Type: String Default value: './build/demos/'

A string value that is used to determine what url to open in browser for preview.

options.tplPath

Type: String Default value: '.tpl'

A string value that is used to determine which template file to use for generate demo file..

Default Options

    opt = this.options(
      coffee: false
      js: 'js/page/'
      less: 'less/page/'
      lessCommonCode: ''
      demo: 'demos/'
      demoShowPath: './build/demos/'
      tplPath: '.tpl'
    )

Contributing

welcome!

Keywords

FAQs

Package last updated on 05 Jan 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc