npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

universal-resume-template

v3.1.0

Published

Minimal and formal résumé (CV) website template for print, mobile, and desktop. https://bit.ly/ur_demo

Downloads

3

Readme

Universal Résumé Template

Minimal and formal résumé (CV) website template for print, mobile, and desktop. The proportions are the same on the screen and paper. Built with amazing Tailwind CSS.

Letter Size Demo | Multiple Pages Demo | A4 Size Demo | Mobile Demo

How to print or save as PDF?
In Chrome, Right-click → Print. In Firefox, File → Print. More info here.

Does it support A4 and Letter paper sizes?
Yes. Replace every -letter with -a4, and uncomment specified code blocks. More info here.

Why it’s made?
I couldn’t find any formal or professional résumé (CV) website with good typography that is optimized for the Web, print, PDF, and mobile. Also, researching what recruiters want, my priorities were fast scanning time and all content to fit on one page.

How to run it

Navigate to the base directory:

cd universal-resume

Install the dependencies:

npm install

Start the development server:

npm run serve

Only generate CSS that is used on the page which results in a much smaller file size:

npm run build

Starting Point

docs/index.html is the main content file. By copying HTML: add pages, sections, subsection, and other parts.

npm run build will make the docs directory ready for drag-n-drop to, for example, https://app.netlify.com/drop (free registration required beforehand).

Also, with additionally running git add docs/styles.css -f and committing changes, it’s ready for push to GitHub and integration with GitHub Pages. GitHub Pages are free for public repositories. Under your repository name, not profile, click “Settings” and enable GitHub Pages by navigating to: Options → GitHub Pages → Source → /docs.

Tailwind CSS

Tailwind CSS is a highly customizable, low-level CSS framework that gives you all of the building blocks you need to build bespoke designs without any annoying opinionated styles you have to fight to override. It has a great documentation.

Custom CSS

Code from tailwind.config.js and tailwind.css transpiles to docs/style.css.

Here is the default tailwind config: defaultConfig.stub.js, and here’s the additional information from the Tailwind documentation: theme.

If you want to change CSS in a classical way, add a class to the HTML element and write the CSS inside tailwind.css.

Balanced Columns

Removing col-fill-auto class will make both columns equally tall. Moreover, removing md:h-letter and md:h-letter-col classes will eliminate fixed proportions of the letter or A4 page — thereby removing unnecessary vertical space when displaying short columns.

A4 Size Variant

Change the default (letter) size to A4:

1. Inside docs/index.html, replace every -letter with -a4.

2. Inside tailwind.config.js, uncomment code block below /* For A4 size */ and then comment code block below /* For Letter size */

3. Inside tailwind.css, comment code below /* For Letter size */ and uncomment code below /* For A4 size */

Important: Too much content on one page will break the page in the form of additional columns.

Printing

Chrome

Right-click → Print.
Also, choose the Save as PDF option if needed.

By expanding More Settings, change Page Size to A4 or Letter.

Firefox

File → Print.

Choose A4 or Letter size by navigating to Properties → Advanced → Paper Size.

Adobe Acrobat Reader

File → Print.

By clicking on the Page Setup button, you are taken to the window with A4 and Letter options.

Blocking Search Engines

Disable search engine indexing by adding the following code to the <head>:

<meta name="robots" content="noindex">

Language Support

With FiraGO typeface, this résumé supports the following scrips: Latin, Cyrillic, Greek, Vietnamese, Arabic, Thai, Georgian, Devanagari, and Hebrew.

If you want to significantly speed up font loading time, find out what fonts you are using (under developer tools network panel) and add them to the head like so:

<link rel="preload" href="./fonts/FiraGO-Regular.latin.woff2" as="font" crossorigin="anonymous">

Contact Me / Hire Me

If you have any question, comment, or issue, please let me know via:

  • [email protected]
  • https://twitter.com/webpraktikos
  • or open an issue on GitHub (Issues → New issue)

License

NonCommercial-ShareAlike 1.0 Generic (CC NC-SA 1.0)
https://creativecommons.org/licenses/nc-sa/1.0/

You are free to:

Share — copy and redistribute the material in any medium or format

Adapt — remix, transform, and build upon the material

Under the following terms:

NonCommercial — You may not use the material for commercial purposes.

ShareAlike — If you remix, transform, or build upon the material, you must distribute your contributions under the same license as the original.