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

gatsby-theme-modern-portfolio

v1.1.6

Published

Gatbsy theme to create a simple portfolio site

Downloads

55

Readme

Gatsby Modern Portfolio Theme

One file developer portfolios.

That's correct. Create your portfolio from just one markdown file.

Features

  • Write a simple portfolio site from just one markdown file
  • change the site's ui with simple theming.
  • (coming soon): Deploy to netlify in one click.

Out of Scope

  • Ability to blog - hopefully this can be composed with another theme later.

Installation

  1. On a new repo install gatsby and this theme yarn add gatsby gatsby-theme-modern-portfolio -D
  2. Create agatsby-config.js file in the root
  3. Set the gatsby-theme-modern-portfolio in the __experimentalThemes option inside your gatsby-config.js
module.exports = {
  __experimentalThemes: [    {
    resolve: "gatsby-theme-modern-portfolio" ,
    options: {
      siteTitle: `Your site title`,
      siteDescription: `Here is a site title`,
    }
  },]
}
  1. Create directory src/pages/markdown mkdir -p src/pages/markdown
  2. Create index.md in src/pages/markdown and add the following to it
---
title: "John Doe"
subtitle: "My Website"
email: "[email protected]"
linkedin: "https://www.linkedin.com/in/john_doe"
textColor: 'black'
backgroundColor: '#e5f1f6'
fontUrl: '"https://fonts.googleapis.com/css?family=Overlock&display=swap"'
fontFamily: 'Overlock, cursive;'
---

## Experience
- Building websites
  1. Add .cache and public to the repo's .gitignore file

  2. Run with yarn gatsby develop

  3. (coming soon): Deploy to netlify to see it live!

Selecting Fonts

  1. Select your chosen font from Google Fonts.
  2. Copy and paste the font url to index.md
  3. Copy and paste the fontFamily to index.md. *Make sure to remove the quotation marks so that font-family: 'Overlock', cursive; becomes fontFamily: 'Overlock, cursive

TODO:

  • Easily deploy to netlify.
  • ability to add a favicon
  • integrate with netlify-cms (this can come a bit later because the "cms" is very easy with one file!)

With thanks to:

  • These two great working examples of themes.
  • The Gatsby team to great documentation, and their default starter from which this project was initially based off.
  • For this (WHERE) website for the style inspiration.