1.1.0 • Published 6 years ago

spike-page-id v1.1.0

Weekly downloads
59
License
MIT
Repository
github
Last release
6 years ago

Spike Page ID

npm tests dependencies coverage

Generates a css-friendly page identifier from a webpack loader context

Note: This project is in early development, and versioning is a little different. Read this for more details.

Installation

npm install spike-page-id -S

Note: This project is compatible with node v6+ only

Usage

In your spike config:

const htmlStandards = require('reshape-standard')
const pageId = require('spike-page-id')

module.exports = {
  // other config…
  reshape: (ctx) => {
    return htmlStandards({
      locals: { pageId: pageId(ctx) }
    })
  }
}

Now in your html, let's say it's called index.sgr:

html
  head
    title My page
  body(id='{{ pageId }}')
    p hello world

This will render something like:

<html>
  <head>
    <title>My page</title>
  </head>
  <body id='index'>
    <p>hello world</p>
  </body>
</html>

If you are working with a page that's nested inside other folders, it will include all folders relative to the project root, separated by a hyphen. So for example:

  • views/index.sgr > index
  • views/posts/welcome.sgr > posts-welcome

…and that's about it!

License & Contributing

1.1.0

6 years ago

1.0.0

7 years ago

0.2.0-0

7 years ago

0.1.0

8 years ago