1.0.1 • Published 3 years ago
create-directory-with-cli v1.0.1
This NPM package will help to create directories easily using command line interface.
How to install:
npm i -g create-directory-with-cliHow to use:
- Go to the location where you want to create the directory or directories.
Type the below command in the terminal. Make sure to modify the directoryName in the below command with the name you want.
Creating single directory
nmkdir directoryNameexample:
nmkdir pagesCreating multiple directories
nmkdir directoryName1 directoryName2example:
nmkdir pages contexts hooks components firebaseWhat it will do:
This creates a directory with the given directoryName name as in the below structure.
├── currentDirectoryInTerminal
├── directoryName1
├── directoryName2