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

vuepress-theme-live-ebook

v2.7.0

Published

Vuepress theme for creating live e-books

Downloads

49

Readme

vuepress-theme-live-ebook

This repository contains theme for Vuepress, made specifically for creating live ebooks, like this one with ease: https://design-process.netguru.co

It's compatible with vuepress 0.x.

Usage

  1. Create new vuepress project.

  2. Install theme:

yarn add vuepress-theme-live-ebook
  1. Install required peer dependencies:
yarn add vue-svg-loader
  1. Create config .vuepress/config.js, here's the example one:
// .vuepress/config.js
module.exports = {
  title: 'Design Process by Netguru', // Page title
  description: 'Live E-Book with useful informations about Design Process',
  theme: 'live-ebook', // Important! This is the name of this theme
  redirectToFirstSection: false, // Important! Control if `/` should redirect to 1st chapter or not
  base: '/', // Base URL, leave as is if you don't serve the book from a folder
  contactUrl: '/', // Url on which user will be redirected after click on contact
  head: [
    ['link', { rel: 'icon', href: '/images/favicon.ico' }],
    ['meta', { property: 'og:type', content: 'website' }],
  ],
  ga: 'UA-259047-66', // Google Analytics ID
  themeConfig: {
    bookTitle: 'Design Process for pros', // Book title
    baseUrl: 'https://design-process.netguru.co', // Used for sharing in social media and for meta tags
    exitUrl: 'https://www.netguru.co/design-process',
    company: {
      name: 'Netguru',
      url: 'https://www.netguru.co',
      logo: '/images/netguru.svg'
      logoMobile: '/images/netguru_letter.svg',
      copyRights: '© 2019 Copyrights by Netguru. All rights reserved.'
    },
    socials: {
      facebook: 'netguru',
      twitter: 'netguru',
      dribbble: 'netguru',
      behance: 'netguru',
    },
    bodyScripts: [ // Allows to pass additional scripts at the end of body
      {
        tagName: 'script', // required
        attributes: { id: 'some-analytics', async: true, defer: true, src: '//some-analytics.js' } // required
      },
      {
        tagName: 'noscript', // required
        attributes: {}, // required (can be empty)
        innerHTML: '<h1>Any content</h1>' // optional
      }
    ],
  },

  chainWebpack: (config) => {
    const svgRule = config.module.rule('svg');

    svgRule.uses.clear();

    svgRule
      .use('vue-svg-loader')
      .loader('vue-svg-loader');
  }
}
  1. Create index.md file with the following content:
---
layout: home
---

Everything that goes under will be displayed on home page. You may add any content, use existing sections designed for a landing page or create your own within the project. Out of the box, you will see rendered header and footer.

Example of home layout code

---
layout: home
---

<LandingChapters
  intro="Short intro text"
  img="image.svg"
  imgAlt="image is displayed under intro text"
/>
<h1>Your own tag</h1>
...

Important! If you don't need landing page, set redirectToFirstSection property in config.js to true.

Alternatively you can also fork one of our E-Books, e.g. PM Book and tweak it to your liking.

Example e-book file tree:

your-ebook
├── .vuepress
│   ├── public <-- publically available files
│   │   ├── fonts
│   │   └── images
│   ├── config.js <-- configuration file, example content posted above
│   ├── override.styl  <-- use this to override default stylus variables
│   └── style.styl <-- put your own CSS here
├── chapters <-- actual e-book content here
│   ├── 01-lorem-ipsum.md
│   ├── 02-dolor-sit.md
│   └── 03-amet-consectetur.md
├── index.md <-- home page (required, although when you set redirectToFirstSection to true, it's there only to redirect users to 1st chapter)
└── package.json

Chapter format

Each chapter file has to start with the following Front Matter:

---
layout: chapter
title: "Example title of Chapter 2"
chapter_number: "02"
description: In this chapter you will ...
chapter_home_intro:
- some new custom text
---

# Example title of Chapter 2

Chapter content goes here.
  • Fields: layout, title and chapter_number are required.
  • Field chapter_home_intro is optional and it is used for <LandingChapters /> intro text. By default <LandingChapters /> displays chapter's heading level 2.
  • description field is optional, if present - it will be places in proper meta tags on the page. Defaults to the description from .vuepress/config.js
  • Make sure that title in front matter corresponds to the primary heading - as in the above example.
  • Use only one H1 heading (# ...).

See example chapter for reference.

Landing page example

---
layout: home
---

<LandingHeader
  title="Some title to be render"
  subtitle="Short subtitle"
  intro="Any text e.g. Learn new things about your design process."
  tag="Version 1.0"
  :imgDesktop="{
    img: 'banner-desktop.png',
    img2x: '',
    imgAlt: '',
  }"
  :imgMobile="{
    img: 'banner-mobile.png',
    img2x: '',
    imgAlt: '',
  }"
/>

<LandingChapters
  intro="Short intro text"
  img="image.svg"
  imgAlt="image is displayed under intro text"
/>

...

Available components

BaseImage

If you need to use an image, place it in folder .vuepress/public/images. You can then use it using the <BaseImage /> component, e.g.:

<BaseImage img="sample.png" img2x="[email protected]" alt="Sample image" />

The img2x property is optional. If you want you can also use regular markdown image syntax.

BaseQuote

You can insert quotes by using following syntax:

<BaseQuote
  text="Quote text goes here"
  author="Quote author goes here"
/>

This will produce a following quote: BaseQuote

BaseQA

You can insert Q&A sections by using following syntax:

<BaseQA
  question="Why do you want to know the business model?"
  answer="This will allow us some amount of lorem ipsum dolor sit amet conscetur blah blah"
/>

This will produce a following outcome: BaseQA

BaseComparison

You can insert DOs and DONT's sections by using following syntax:

<BaseComparison
  intro="There are a couple of things we need to cover:"
  :good="[
    'Create your wireframes based on a muted color pallete',
    'Use color only if it helps defining the idea behind the design',
  ]"
  :bad="[
    'Don't use color in your wireframe designs unless it has a solid purpose',
    'Don't use various tints of grey',
  ]"
/>

This will produce a following outcome: BaseComparison

LandingHeader

Section is designed to be used on the home page. You can start index.md with this section.

<LandingHeader
  title="Some title to be render"
  subtitle="Short subtitle"
  intro="Any text e.g. Learn new things about your design process."
  tag="Version 1.0"
  :imgDesktop="{
    img: 'banner-desktop.png',
    img2x: '',
    imgAlt: '',
  }"
  :imgMobile="{
    img: 'banner-mobile.png',
    img2x: '',
    imgAlt: '',
  }"
/>

The imgMobile property is optional. If not passed, on mobile version, first image will be used. Also, the img2x property is optional.

This will produce a following outcome: BaseComparison

LandingChapters

Section will display first three chapters with sections. You can provide additional option chapterDisplayStart and pass any number. That number will be treated as a start chapter.

There is also an option limitSectionInChapter to limit displayed sections in chapters. By default, all sections will be displayed.

<LandingChapters
  intro="Short intro text"
  img="image.svg"
  imgAlt="image is displayed under intro text"
  :chapterDisplayStart="3" // optional, default is 0
  :limitSectionInChapter="7" // optional, default shows all
/>

In addition, you can pass hasCarousel option and then all chapters will be displayed

The intro and image related properties are optional.

This will produce a following outcome: BaseComparison

LandingFeatured

Section will display featured article.

<LandingFeatured
  title="Building partnerships - how to make sure that the client is a part of the team"
  subtitle="EDITORS PICK"
  intro="Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat."
  href="//google.com"
  img="featured.png"
  imgAlt="featured article"
/>

This will produce a following outcome: BaseComparison

LandingRecommendations

Section is designed to display three testimonial/recommendation blocks. Passing less than three won't break the layout though.

<LandingRecommendations
  title="Recommendations"
  subtitle="users"
  intro="Learn new things about your design process."
  :recommendations="[
    {
      name: 'Grzegorz',
      position: 'Some Text',
      recommendation: 'Proin ut condimentum augue, in dignissim orci. Praesent vulputate venenatis.',
      photo: 'test.jpg'
    },
    {
      name: 'Some Grzegorz',
      position: 'Can Be Position',
      recommendation: 'Proin ut condimentum augue, in dignissim orci. Praesent vulputate venenatis.',
      photo: 'test.jpg'
    },
    {
      name: 'Any Name',
      position: 'Frontend Developer',
      recommendation: 'Proin ut condimentum augue, in dignissim orci. Praesent vulputate venenatis.',
      photo: 'test.jpg'
    }
  ]"
  :images="[
    {
      img: 'calendar.svg',
      imgAlt: 'Calendar Ilustaration',
    },
    {
      img: 'desk.svg',
      imgAlt: 'Desk Ilustaration',
    },
  ]"
/>

The images property is optional. No image will be displayed if empty. You are also good to go to pass only one. Properties name, position, recommendation, photo are required.

This will produce a following outcome: BaseComparison

Customization

In order to customize basic informations, update themeConfig properties in .vuepress/config.js.

You can also override [styles/variables.stylus](default stylus variables), in order to do so create .vuepress/override.styl and override them there. Recommended variables to override:

$ff-base = Helvetica
$ff-serif = Georgia, sans-serif
$c-primary = #ff9a57

Do NOT put regular CSS inside override.styl - it's only for overriding variables.

If you want to add custom CSS, create .vuepress/style.styl.