Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

data-store

Package Overview
Dependencies
Maintainers
1
Versions
45
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

data-store

Store data from YAML front matter in HTML data-attributes.

  • 0.1.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
30K
decreased by-27.05%
Maintainers
1
Weekly downloads
 
Created
Source

data-store NPM version Build Status

Store data from YAML front matter in HTML data-attributes.

Install

Install with npm:

npm i data-store --save-dev

Usage

var dataStore = require('data-store');

This is foo.html:

---
title: Home
---
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>Document</title>
  </head>
  <body>
    this is the body
  </body>
</html>

.set()

To store the YAML front matter from foo.html in data attributes:

// Read the file in as a string
var str = fs.readFileSync('foo.html');

// pass the string to data-store
var store = dataStore(str);

To store the data from the front-matter in data attributes (by default data is stored on data-metadata on a script tag with the metadata id):

store.set();
console.log(store.html);

Results in:

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>Document</title>
  </head>
  <body>
    this is the body
  <script type="text/x-metadata" id="metadata" data-metadata="{\"title\":\"Home\"}"></script></body>
</html>

.get()

Get the data:

store.get('metadata');

id

Set a custom id:

store.set('foo');
// to get the data:
store.get('foo');

extend

YAML front matter is stored by default. If an object is passed any existing front-matter will be extended.

If front-matter doesn't exist, just pass an object to store:

store.set({name: 'Jon Schlinkert'});

Results in:

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>Document</title>
  </head>
  <body>
    this is the body
  <script type="text/x-metadata" id="metadata" data-metadata="{\"name\":\"Jon Schlinkert\"}"></script></body>
</html>

Or with a custom id:

store.set('foo', {name: 'Jon Schlinkert'});

Results in:

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>Document</title>
  </head>
  <body>
    this is the body
  <script type="text/x-metadata" id="foo" data-metadata="{\"name\":\"Jon Schlinkert\"}"></script></body>
</html>

Author

Jon Schlinkert

Brian Woodward

License

Copyright (c) 2014 Jon Schlinkert, contributors.
Released under the MIT license


This file was generated by verb-cli on May 01, 2014.

Keywords

FAQs

Package last updated on 01 May 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc