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

vs-template1

v1.0.87

Published

React Template 1 for Vsual Resume

Downloads

281

Readme

Templates

Templates for Vsual Resume, Reusable components on NPM

Requirements

All these templates use bootstrap make sure to add their CDN to your index.html file.

 <!-- Bootstrap CSS -->
    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">



  <!-- Optional JavaScript -->
    <!-- jQuery first, then Popper.js, then Bootstrap JS -->
    <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
    <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>

SideBar

1. You need to import the component like this:
import {SideBar} from 'vs-template1'
2. SideBar component receives two props:
  • name: Takes a string as the title of the SideBar Dropdown.
    <SiderBar name={'Menu'} />
  • navLinks: Takes an array of objects with two keys:
    • pathName: Name of your link.
    • pathRef: Path of your Route.
 let myLinks= [
    {
      pathName: "FirstLink",
      pathRef: "/first"
    },
    {
      pathName: "SecondLink",
      pathRef: "/second"
    },
    {
      pathName: "ThirdLink",
      pathRef: "/third"
    }
  ]
    <SiderBar navLinks={myLinks}  />

About

1. You need to import the component like this:
import {About} from 'vs-template1'
2. About component receives three props:
  • name: String representing your name.
    <About name={'Celestino Salim'} />
  • imageURL: Takes a String that will be the image URL.
    <About imageURL='http://myimageURL'  />
  • description: Takes a String that will be the description displayed in the component.
    <About description=`Lorem Ipsum`  />

Intro

1. You need to import the component like this:
import {Intro} from 'vs-template1'
2. Intro component receives three props:
  • name: String representing your name.
    <Intro name={'Celestino Salim'} />
  • profession: Takes a String that will be displayed under your name.
    <Intro profession='Software Engineer'  />
  • link: Takes a String that correspond to the route of your homepage.
    <Intro link=`home`  />