npm i -g badcss
- edit bad css files => Just type
zagyin the terminal and a nice interface will appear to ask you some question like where is the file you want to edit and where do you want the output to be - Init nodejs project => Type
zagy --init [-t ]
zagy --init sample -t jasmine
#Jasmine
.
└── app/
├── dist
├── node_modules
├── spec/
│ └── support/
│ └── jasmine.json
├── src/
│ ├── __tests__/
│ │ ├── helpers/
│ │ │ └── reporter.ts
│ │ └── indexSpec.ts
│ └── index.ts
├── .eslintrc
├── .gitignore
├── .prettierrc
├── package-lock.json
├── package.json
└── tsconfig.json
zagy --init sample -t jestor
zagy --init sample
#Jest
.
└── app/
├── dist
├── node_modules
├── src/
│ ├── __tests__/
│ │ └── index.spec.ts
│ └── index.ts
├── .eslintrc
├── .gitignore
├── .prettierrc
├── jest.config.json
├── package-lock.json
├── package.json
└── tsconfig.json
zagy --init PROJECTNAME
create nodejs project based on typescript, eslint, prettier [jest, jasmine]
You have a very long css file with absolute units for font size and you want to make all the font sizes Relative to the html font size
- Pick a reference absolute font size from your css file (That's your reference value)
- Divide all other font-sizes by the value and replace its absloute unit with rem
- Replace the font-size in the html tag with the reference size in px (or any absolute value)
in the command line type zagy
you'll see something like this

#absoluteFontSizes.css
div{...
font-size:15px;
}
.classname{...
font-size:30px;
}
h.classname{
...
font-size:60px;
}
after running zagy you should have something like this in the location you specified
#output.css
div{...
font-size: 0.5 rem;
}
.classname{...
font-size: 1 rem;
}
h.classname{
...
font-size: 2 rem;
}
Now you should add an html tag to your output.css file with the reference value like this
#output.css
html{
font-size:30px;
}
div{...
font-size: 0.5 rem;
}
.classname{...
font-size: 1 rem;
}
h.classname{
...
font-size: 2 rem;
}
Now all the font in your page is relative to the html tag and you can resize the font of your entire website easily
- Other absolute units handling other than px
- Automatic additon of the reference font-size in the html tag