
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
@merry-solutions/cli
Advanced tools
Generate application components based on templates using command line.
@merry-solutions/cli is a cli-tool designed to do the heavylifting when developing components requiring alot of boilerplate. It is originally intended for use with React, but can also be used for generating basically any set of files based on moustache
templates.
Use existing presets or create your own with moustache
templates.
Install as dev dependency
npm i -D @merry-solutions/cli
Add to scripts in the package.json
.
"cast": "cast"
Or simply run from command line without installation:
npx @merry-solutions/cli {some arguments here}
i.e.
npx @merry-solutions/cli cool-stuff/CoolHook --itemType=hook
Generate an item using one of the preset templates, currently component and hook creating is supported.
Example to generate a hook:
npm run cast -- shared/hooks/MyAwesomeHook --itemType=hook
Would generate a hook in src/shared/hooks/MyAwesomeHook
based on the preset template.
Example to generate a component:
npm run cast -- components/MyAwesomeComponent --itemType=component
Would generate a component in src/components/MyAwesomeComponent
based on the preset template.
itemType = required, should correspond to the name of a subfolder in the provided templatesRoot
directory.
templatesRoot = optional, relative path to your custom folder with tempaltes, see below how to create your own templates.
nameCase = optional, name case for the entity name inside the template file, can be either set to camelCase
or PascalCase
. Defaults to PascalCase
, is used to convert file name to entity name if the file name contains dashes or underscores.
folderPrefix = optional, prepend item folder with a string, i.e. --folderPrefix=use-
for a hook.
Also can add any additional amount of --key=value
pairs for replacements. I.e. if your template looks like:
// ./templates/random/random.txt.mustache
Hello, {{ name }}! I am {{ reaction }} to {{ verb }} you!
You can generate a file from it using the following command (yes, it is included in the default templates folder for demo purposes):
npx @merry-solutions/cli --itemType=random some-random-stuff/happy-to-see-bob-file --name=Bob --reaction=happy --verb=see
Is pretty easy. You need a folder for templates, which would hold a collection of subfolders, each named same as the eitity you are attempting to create, i.e. the default templates folder has 2 subfolders: component
and hook
, so you can only create these two if you're using defaults.
Let's assume you want to create your own template for component, you would have to create a directory with a subfolder named after the type of the item you plan to create, i.e. my-templates/component
.
project
└───src
│
└───my-templates
│ └───component
│ │ component.model.ts.mustache
│ │ component.tsx.mustache
│ │ ...
Place some moustache
templates inside, note that if file name contains the subdirectory name in it, it will be swapped for the item name during file generation, i.e. component.tsx.mustache
=> SomeComponent.tsx
.
The variable used in templates should hold same name as the subfolder, i.e. for the component
we'd have:
// component.tsx.mustache
import { FC } from "react";
import { {{ component }}Props } from "./{{ component }}.model";
import style from "./{{ component }}.module.scss";
export const {{ component }}: FC<{{ component }}Props> = ({}: {{ component }}Props) => {
return <div className={style.{{ component }}}>{{ component }} works!</div>;
};
Now simply invoke cast
to create new files based on the provided templates by passing the template root as the templatesRoot
param, i.e.:
npm run cast -- shared/components/MyComponent --itemType=component --templatesRoot=./templates/
See sample templates in the templates folder of this repo or check the demo react repo for templates folder and commands for generating files in package.json
.
[1.3.0] 2021-11-18
FAQs
Generate application components based on templates using command line.
We found that @merry-solutions/cli demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.