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

material-resume

v1.0.1

Published

A cool resume template

Downloads

92

Readme

Material Resume

Demo

Getting Started

  1. Download the index.html file
  2. Open in your favorite editor
  3. Open document in chrome
  4. Start editing in the <body>
  5. To save:
  • Right click
  • Print...
  • Save as PDF

Building the resume is as easy as adding ng-app="Resume" to your body and then using the directives listed below.

Directives

<resume>

Holds the entire document.

Example:

<html>
  <head>...</head>
  <body ng-app="Resume">
    <resume>
      ...
    </resume>
  </body>
</html>

<resume-heading>

Heading the for the resume. Should come immediately after <resume>.

Options:

  • first-name: Your first name
  • last-name: Your last name
  • website: Your website, optional
  • email: Your email, optional
  • phone: Your phone number, optional
  • github: Your github username, optional
  • linkedin: Your linkedin username, optional

Example:

<resume>
  <resume-heading first-name="Joe"
                  last-name="Smith"
                  phone="555-555-555">
  </resume-heading>
</resume>

<resume-body>

Contains the body of the resume.

Example:

<resume>
  <resume-body>
    ...
  </resume-body>
</resume>

<resume-column>

Adds a column to the resume. The width of the column must also be specified. There can be more than one column side-by-side, but the flex values should add up to 100.

Options:

  • flex: The width of the column out of 100

Example:

<resume>
  <resume-heading></resume-heading>
  <resume-body>
    <resume-column flex="30">
      <!-- This will be 30% of the page -->
    </resume-column>
    <resume-column flex="70">
      <!-- This will be 30% of the page -->
    </resume-column>
  </resume-body>
</resume>

<sidebar-category>

A small category window meant to hold a couple of points. Useful for things in a sidebar, like coursework. Meant for small bullets. Child items should use the <p> tag.

Options:

  • name: The name of the category. Will appear in bold font above the items

Example:

<resume-body>
  <resume-column flex="30">
    <sidebar-category name="Facts">
      <p>I am awesome</p>
      <p>I am cool</p>
    </sidebar-category>
  </resume-column>
</resume-body>

<category>

A larger category for the main section of the resume. Meant for multiple items to be be elaborated upon. Child items should be the <category-item> tag. An example would be to create a category called "Jobs" and then each item would be a previous job that would then be expanded upon.

Options:

  • name: The name of the category

Example:

<resume-body>
  <resume-column flex="70">
    <category name="Jobs">
      <category-item title="My First Job">...</category-item>
      <category-item title="My Second Job">...</category-item>
      <category-item title="My Third Job">...</category-item>    
    </category>
  </resume-column>
</resume-body>

<category-item>

A point to elaborate upon in a category. E.x. a job in the "Jobs" category. Child items should use the <li> tag.

Options:

  • title: The title of the item. Will be displayed in bold under the category
  • subtitle: Extra info, next to the title, optional

Example:

<category name="Jobs">
  <category-item title="Marketing Intern" subtitle="Contoso (Summer 2014)">
    <li>Created content for marketing</li>
    <li>Worked with others, sometimes successfully</li>
  </category-item>
  <category-item title="Cashier" subtitle="Micheal's (November 2014 - May 2015)">
    <li>Checked items out</li>
    <li>Did inventory</li>
  </category-item>   
</category>