
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.
structify-cli
Advanced tools
Structify CLI is a command-line tool that helps you easily create folder structures and generate JSON representations of project structures. It’s perfect for developers who want to set up their project directories quickly and manage their folder structures more efficiently.
Whether you're working on a new project or organizing your existing one, Structify can save you time by automating folder creation and making your project structure clear and organized.
You can install Structify globally or locally. To use it, you'll need to install it via npm or yarn.
To install the tool globally, run:
npm install -g structify-cli
yarn global add structify-cli
To install the tool globally, run:
npm install -g structify-cli
yarn global add structify-cli
Once installed globally, you can run the structify command from anywhere in your terminal.
To install the tool locally for your project:
npm install structify-cli --save-dev
or
yarn add structify-cli --dev
After installing it locally, you can run the tool via npx without the need for global installation:
npx structify-cli <command>
Once installed, you can use structify via your terminal to create or generate folder structures.
structify create <structure>
Where is a JSON object defining your desired folder structure. For example:
{
"src": {
"components": {},
"utils": {}
},
"tests": {}
}
This will create the following directory structure:
├── components/
├── utils/
tests/
structify generate
This will scan the current directory and output the folder structure as a JSON object.
Example output:
{
"src": {
"index.js": {},
"styles": {}
},
"tests": {}
}
{
"src": {
"components.tsx": {},
"utils.js": {}
}
}
This will create:
src/
├── components.tsx/
├── utils.js/
This project is licensed under the MIT License - see the LICENSE file for details.
Developed by Yogeesh.
FAQs
CLI tool to recognize and create folder structures.
We found that structify-cli demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers 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.