🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

pastry-cli

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pastry-cli

Node CLI for effectively pasting template files/directories

latest
Source
npmnpm
Version
1.4.0
Version published
Maintainers
1
Created
Source

Pastry-CLI

This CLI aims to help speed up your workflow, guidelines and code reusability by adding support for pasting template building blocks.

Since it's not related to any specific frameworks or languages it can be used everywhere and for anything with minimal setup and full control.

Installation

Install globally with npm npm i -g pastry-cli or yarn yarn global add pastry-cli

Setup/Usage

  • Create a /pastries directory in your project source directory.
  • Populate the directory with template files/folders.
  • Run pastry inside your terminal while located inside your project.

The cli will guide you through the rest of the steps.

It will look up for a /pastries directory starting from your cwd.

This means that you can have default pastries for all projects by placing them in a parent directory.

Name replacement

You can replace any text including filenames with the name you provide when running pastry.

For example: running pastry -n testFile would change the following:

PLACEHOLDER.ts ~> testFile.ts

When changing text inside a file you have more options:

export default PLACEHOLDER' ~> export default testFile

export default UPPER_PLACEHOLDER' ~> export default TESTFILE

export default LOWER_PLACEHOLDER' ~> export default testfile

export default PASCAL_PLACEHOLDER' ~> export default TestFile

Optional Snippets

With optional snippets you can predefine parts of code you might want to use in a file. For example this will prompt you if you want to include the log snippet:

// pastry-start log
console.log('I may be part of the file, yay!')
// pastry-end log

Renaming existing files

By running pastry --rename you can rename existing files. Currently, there is only support to rename together with the parent directory. The name of the directory will be used as PLACEHOLDER is used normally.

Available arguments

ArgumentShorthandDescription
--name-nDefine the new name
--path-pDefine the target path
--template-tName of the template to use
--rename-rRename existing
--help-hList available arguments

Configuration

Configuration can be done by creating a .pastryconfig.json in the root directory for the project.

{
  "templateDir": "{YOUR_TEMPLATE_DIRECTORY}" // default: pastries
}

Keywords

cli

FAQs

Package last updated on 01 Apr 2023

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