Yeoman: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
(Created page with "== Description == A [http://yeoman.io/authoring/user-interactions.html Yeoman] generator to quickly scaffold NSIS scripts. https://raw.github.com/idleberg/generator-nsis/mas...")
 
No edit summary
 
Line 1: Line 1:
== Description ==
== Description ==


A [http://yeoman.io/authoring/user-interactions.html Yeoman] generator to quickly scaffold NSIS scripts.
[http://yeoman.io/authoring/user-interactions.html Yeoman] is a scaffolding tool for the CLI, built on Node.js. This generator let's you quickly kickstart NSIS scripts.


https://raw.github.com/idleberg/generator-nsis/master/screenshot.png
https://raw.github.com/idleberg/generator-nsis/master/screenshot.png

Latest revision as of 11:18, 2 September 2018

Description

Yeoman is a scaffolding tool for the CLI, built on Node.js. This generator let's you quickly kickstart NSIS scripts.

screenshot.png

Features

  • Modern UI-aware
  • adds sections
  • adds core libaries
  • adds callback functions
  • adds translations
  • adds language dialog

Installation

You need Node.js installed and available in your PATH environmental variable. Use your preferred Node package manager to install the Yeoman CLI tool:

yarn global add yo || npm install -g yo

Once completed, you are set up to install the generator:

yarn global add generator-nsis || npm i generator-nsis -g

Usage

Launch the generator from the command-line:

yo nsis

Several code editors support Yeoman generators, including Atom and Visual Studio Code.

Links