
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
grow-files
Advanced tools
Node.js CLI convert and generate tool for template file 🥂
Node.js CLI convert and generate tool for template file
npm install -g grow-files
grow-files <path>
# Create if not
# ✨ Created TemplatesDir!! Let's create a template in the created directory. - <HomeDir>/.grow-files/templates
Create template HomeDir/.grow-files/templates
<HomeDir>
┗ .grow-files
┗ templates
┗ module
┗ $FILE_NAME.spec.ts
┗ $FILE_NAME.ts
// HomeDir/.grow-files/templates/module/$FILE_NAME.spec.ts
import { $FILE_NAME } from './$FILE_NAME';
describe('Test the $FILE_NAME.', () => {
test('Test the example method response to undefined.', () => {
const resp = $FILE_NAME.example();
expect(resp).toBe(undefined);
});
});
// HomeDir/.grow-files/templates/module/$FILE_NAME.ts
/**
* class methods name: $FILE_NAME
*
* @export
* @class $FILE_NAME
*/
export class $FILE_NAME {
/**
* example class method
*
* @static
* @memberof $FILE_NAME
*/
public static example() {}
}
grow-files ./src/modules/StringModule
# grow-files <path>
# templates/ 配下に配置したディレクトリの名前一覧が表示されます。
# そのうちの一つを選択します。
? Choose a template.
// src/modules/StringModule.spec.ts
import { StringModule } from './StringModule';
describe('Test the StringModule.', () => {
test('Test the example method response to undefined.', () => {
const resp = StringModule.example();
expect(resp).toBe(undefined);
});
});
// src/modules/StringModule.ts
/**
* class methods name: StringModule
*
* @export
* @class StringModule
*/
export class StringModule {
/**
* example class method
*
* @static
* @memberof StringModule
*/
public static example() {}
}
MIT License © 2021 hanetsuki
FAQs
Node.js CLI convert and generate tool for template file 🥂
We found that grow-files 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.