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

starter-eleventy

v1.1.0

Published

Base kit for eleventy but include eleventy

Downloads

53

Readme

Starter Eleventy Skeleton with beCSS stylesheet

An Starter base for Eleventy's projects

Please note that this project does not include the eleventy installation!

I prepared this structure because I had to do this repetitive work every time I started a project.

What Include?

  1. css folder with basic css configuration / Also include becss www.becss.dev
  2. data folder with json file ready for complementation
  3. images folder with favico example
  4. include folder with main.liquid
  5. Hidden .eleventy.js file with:
  1. Hidden file .eleventyignore ignoring this README.md file
  2. Hidden file .gitignore ignoring the Modules Nodes folder
  3. File main.liquid in include folder with base html skeleton
  4. File index.liquid with empty content
  5. File data.json with project details for the html skeleton
  6. File style.css with the root base configuration
  7. File print.css for printing models

How to Star

  1. Mkdir of your project
  2. Inside the directory install eleventy: npm install @11ty/eleventy --save-dev
  3. Copy the all the files of this Starter project to your new project, meke sure to include the hidden files. You can install files directly from NPMJS: ( npm i starter-eleventy ) or you can also down load the repo from Github
  4. Modify the data.json in data folder with your project information
  5. Run the server to generate the files (npx @11ty/eleventy) after stop the server Ctl-c
  6. Star your git: git init (make your first commit)
  7. You are ready to begin your design!!!

Installation

Just download from Github https://github.com/iturbides/starter-eleventy

Or you can installed by terminal directly from NPM with the following command: npm i starter-eleventy

Important Considerations

  1. When copying the project DO NOT INCLUDE the version control in the .git directory. Remember that your new project is going to have it own version control, not the template one!
  2. Remember to keep the order and do the eleventy installation before of copying the template base files
  3. Please note that when installing from NPM maybe the .gitignore hidden file is bypassed. so you have to created and add node_modules folder before your git init.