create-yamlresume
v0.9.1
Published
Create a new YAMLResume project
Maintainers
Readme
create-yamlresume
create-yamlresume helps you create a new YAMLResume project with a one-liner command.
Usage
With npx:
npx create-yamlresume my-resumeWith npm:
npm init yamlresume my-resumeWith yarn:
yarn create yamlresume my-resumeWith pnpm:
pnpm create yamlresume my-resumeWhat it does
This tool will:
- Create a new directory with your project name
- Create a basic Node.js project structure with:
package.jsonwith YAMLResume dependency and useful scripts.gitignorefile with appropriate excludesREADME.mdwith basic usage instructions
- Install all necessary dependencies
- Create a new sample resume file using
yamlresume new - Show available commands and next steps
Project Structure
The generated project will have:
my-resume/
├── package.json # Project configuration with yamlresume dependency
├── .gitignore # Git ignore rules
├── README.md # Project documentation
└── resume.yml # Your YAML resume (filename you choose)Available Scripts
In the generated project, you can run:
npm run build- Build your resume to PDFnpm run dev- Watch for changes and rebuild automaticallynpm run validate- Validate your resume against the schemanpm run yamlresume- Run the YAMLResume CLI
