New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

seng-generator

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

seng-generator

A CLI generator to create code based on templates

  • 0.5.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
174
decreased by-14.71%
Maintainers
1
Weekly downloads
 
Created
Source

seng generator

A CLI generator to create code based on templates

Install

$ npm install -g seng-generator

Usage

The easiest command runs a wizard to create code based on a template.

$ sg wizard

Note: Names can be inputted in any format (slug-case, camelCase, PascalCase etc.).

Templates

Seng generator is very flexible, because it's not linked to a language or technology. Seng generator requires custom user created templates to generate code.

creating custom templates

Creating a template is really easy. The first step is to create a folder that will contain all your templates. Inside the folder you create a folder (don't use spaces) with the name of your template. The name of the folder is important because you have to use the name to create code based on that template.

Inside that folder you can add/create your own files. There are no limits it can contain as much files and folder as possible.

You can create as many templates as you need. It's also possible to create multiple template folders (a comma separated templatePath can be used if there are multiple folders with templates). You can for example create a template folder per project so it can be shared with other project members together with the rest of the code.

Variables

Templates can be customized by using variables. Variables can be used as folder name in the following format {variable}. Inside files you can use the handlebar syntax {{variable}}.

available variables:

  • name: Name in it's original format
  • name_pc: Name converted to PascalCase
  • name_sc: Name converted to slug-case
  • name_cc: Name converted to CamelCase
  • name_snc: Name converted to snake_case

Don't forget to run $ sg init or set the template path with $ sg settings to use your custom templates with seng-generator

Settings

There are five layers of settings (From least to most important):

  • default global settings
  • global settings in user directory .senggenerator file
  • local settings in .senggenerator file in current directory
  • template settings in .senggenerator file in the template directory
  • options of the command you are running

An option will always override a local setting etc.

The five layers combined determine the settings used in every command.

You can see the settings of a directory by running $ sg settings. This is without the template specific settings and without the option overrides of course. The same command can be used to modify the settings.

Commands

help

Show help

$ sg -h
wizard

Starts a wizard to create code based on a template.

$ sg wizard [type] [name]

Arguments:

  • type: (Optional) The template you want to use.
  • name: (Optional) The name you want to use in the template.

Examples:

$ sg wizard
$ sg wizard block
$ sg wizard component ScrollBar
init

Create a local settings file (.senggenerator). Local settings always override global settings.

$ sg init
generate

Directly create a store module based on the current settings.

$ sg <type> <name>

Arguments:

  • type: The template you want to use.
  • name: The name you want to use. Can be a comma seperated list to create multiple (example1,example2).

Options:

  • -d, --destination <destination>: Override the destination for store module.
  • -p, --template-path <template-path>: Override template path.
  • -s, --sub-directory <subdirectory>: Set subdirectory. This path is added to the destination path.
  • -f, --force: Force creation. By default it's impossible to create code if the destination path doesn't exist. This option forces the creation of code and will generates the destination folders if they don't exist.

Examples:

$ sg functional-component check-box
$ sg block video -d ./src/components 
$ sg component Button -s ./atoms 
settings

Set or display settings. Without any options it will show the settings. By default it will set the settings locally in a .senggenerator file. You can also set global settings by using the global option.

$ sg settings

Options:

  • -d, --destination <destination>: Set the destination path.
  • -t, --template-path <template-path>: Set template path.
  • -l, --log: Log global or local settings depending on the global flag.
  • -g, --global: Set global settings.

Examples:

$ sg settings -l
$ sg settings -d ./src/app/components -t ./template
$ sg settings -g -d ./components
reset

Reset global settings to the defaults.

$ sg reset

Keywords

FAQs

Package last updated on 21 Jun 2017

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