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

attributes-kit

Package Overview
Dependencies
Maintainers
4
Versions
55
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

attributes-kit

React component for MSON rendering

  • 1.0.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
33
decreased by-15.38%
Maintainers
4
Weekly downloads
 
Created
Source

Attributes Kit Circle CI

Attributes Kit is a (as the name suggest) kit which helps you with rendering MSON (plain-text, human and machine readable, description format for describing data structures).

For instance—it turns the following...

- id: 1
- name: A green door
- price: 12.50
- tags: home, green

...into this.

image

Please see the list of supported features →

Preview

This application has been deployed to Heroku, try it out at attributes-kit.herokuapp.com.


Table of Contents


Getting Started

  1. Clone the repository
git clone git@github.com:apiaryio/attributes-kit.git
  1. Install dependencies
cd ./attributes-kit
npm install
  1. Run it
npm start

You can go to localhost:8080 to try out the Playground, or to /examples.html to see the list of examples.

  1. You're done! :+1:

If you would like to use it in your application, please see the Usage section.


Usage

Browser

  1. Install the package
npm install attributes-kit
  1. Require the package
ES6
import AttributesKit from 'attributes-kit/dist/attributes-kit';
ES5
var AttributesKit = require('attributes-kit/dist/attributes-kit');
  1. Use it

Use the Attributes Kit, you can see the API.

<script> tag

If you prefer to drop a <script> tag in your page, here's how to do it. Just a note—all builds do support UMD (AMD and CommonJS) out of the box.

  1. Choose the build
Download the latest release
Go to the [Releases](https://github.com/apiaryio/attributes-kit/releases) page and download the latest release, or you can download all the builds directly below.
Development Build
attributes-kit.js; attributes-kit.js.map
Works out of the box, the uncompressed file is best used during development or debugging. attributes-kit.js.map is not required to run the Kit.
Production Build
attributes-kit.min.js
Works out of the box, compressed version saves bandwidth and improves performance in production.
Use CDN
Development Build
https://npmcdn.com/attributes-kit/dist/attributes-kit.js
Production Build
https://npmcdn.com/attributes-kit/dist/attributes-kit.min.js
  1. Drop the <script> tag
<script src="./attributes-kit.js"></script>
  1. Use it
var AttributesKit = window.AttributesKit;
AttributesKit.render(refractElement, element, options);

Please see the API.

Advanced

There are two more builds mainly for more advanced use cases.

Build without React
attributes-kit-no-react.js; attributes-kit-no-react.js.map
This build does not contain React dependency. You have to install React manually, or your application lists React in its dependencies (in package.json).
Build without dependencies
attributes-kit-no-deps.js; attributes-kit-no-deps.js.map
This build does not contain any dependencies of the Attributes Kit. You have to install all dependencies manually, or your application lists them all in (e.g.) package.json.

Server

You can use the Attributes Kit on the server too. For instance—you can generate HTML on the server and send the markup down on the initial request for faster page loads and to allow search engines to crawl you pages for SEO purposes.

  1. Install the package
npm install attributes-kit
  1. Require the package

Please mind the dist/attributes-kit-server suffix.

ES6
import AttributesKit from 'attributes-kit/dist/attributes-kit-server';
ES5
var AttributesKit = require('attributes-kit/dist/attributes-kit-server');
  1. Use it
import React from 'react';
import ReactDomServer from 'react-dom/server'
import {Attributes} from 'attributes-kit/dist/attributes-kit-server';

const element = React.createElement(Attributes, {
  element: [Refract Element]
});

ReactDomServer.renderToString(element);

API

render Method
import AttributesKit from 'attributes-kit/dist/attributes-kit';

AttributesKit.render(refractElement, element, options);
Class Instance
import AttributesKit from 'attributes-kit/dist/attributes-kit';

let attributes = new AttributesKit({element, options});
attributes.render(refractElement);
React Component
import ReactDom from 'react-dom';
import {Attributes} from 'attributes-kit/dist/attributes-kit';

ReactDom.render(<Attributes element={refractElement} />, element);

Parameters

Attributes Kit always takes the same parameters.

ParameterDescription
refractElementRefract element to be rendered.
elementA DOM node or a CSS selector; Attributes Kit will be rendered inside the element.
optionsAn options object to customize the rendering.
options.dataStructuresIf set, these data structures will be used to dereference the refractElement being rendered. It should be a js array of refract elements.

Developing

Installation

  1. Clone the repository
git clone git@github.com:apiaryio/attributes-kit.git
  1. Install dependencies
cd ./attributes-kit
npm install
  1. Run it
npm start

Congratulations! You are all set to start developing now! :rocket:


Compatibility

PackageVersion
React0.14+
React DOM0.14+
Node6.11.1
NPM3.8.x

Browsers

BrowserVersion
Google Chrome15+
Safari6.1+
Firefox28+
Edge12+
IE11+
Opera12.1+

Status

Please see the STATUS.md file.


Versioning

This repo is using semantic-release.


Contributing

Please see the Contributions guidelines.


Code of Conduct

This project adheres to the Open Code of Conduct. By participating, you are expected to honor this code.


License

MIT.

Keywords

FAQs

Package last updated on 24 Oct 2019

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