Resume of Kazuya Gosho, built with Webpack + Pug + Postcss.
Why I created this repository: https://dev.to/acro5piano/5-reasons-why-git-based-resume-is-awesome-127
After checking out the repo, run:
yarn install
yarn start
open localhost:3000 and you can see my resume.
Feel free to write your resume with this template, if you are enough odd to do so.
src/app.postcss
is for csssrc/index.pug
is for template- If you want to write your resume with sass, just add
sass-loader
Unfortunatelly, we only have really legacy option to this setting.
To create Japanese resume, HtmlWebpackPlugin
in webpack.config.js
like this:
plugins: [
new HtmlWebpackPlugin(
{
template: './index.ja.pug',
filename: 'index.html',
inject: false
}
)
]
To take a screenshot, just run
yarn start
yarn screenshot
This runs your Chrome headlessly and take an image.
- Add script for taking screenshot.
- Add ESLint for stability.
- Add Flow for type-safe and null-safe.
- Internationalization. currently I need
en
andja
. For the time being createindex.ja.pug
. - Use React.js or Vue.js for template. This is for HMR and scoped CSS and internationalization.
- Add script for build. Generate multilingual PDF to
/dist
. -
screenshot
command Internationalization. - Create GitHub page or something to render this as actual web page.
- Hopefully, change language interactively.
I am not a native English speaker, so if you find something wrong, please create an issue or send a pr.
Thanks in advance.