Socket
Socket
Sign inDemoInstall

blade.macro

Package Overview
Dependencies
84
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    blade.macro

your babel plugin with babel-macros


Version published
Maintainers
1
Install size
1.41 MB
Created

Readme

Source

blade.macro ⛸️

Babel Macro

This is a babel-macros macro for babel-plugin-blade.

Please see those projects for more information.

Installation

This module is distributed via npm which is bundled with node and should be installed as one of your project's devDependencies:

npm install --save-dev blade.macro

You'll also need to install and configure babel-macros if you haven't already.

Usage

Once you've configured babel-macros you can import/require blade.macro. For example:

import blade from 'blade.macro'
import {Connect, query} from 'urql'

const movieQuery = createQuery()
const Movie = () => (
  <div>
    <Connect
      query={query(movieQuery)}
      children={({data}) => {
        const DATA = movieQuery(data)
        return (
          <div>
            <h2>{DATA.movie.gorilla}</h2>
            <p>{DATA.movie.monkey}</p>
            <p>{DATA.chimp}</p>
          </div>
        )
      }}
    />
  </div>
)
      ↓ ↓ ↓ ↓ ↓ ↓ 
import { Connect, query } from 'urql';

const Movie = () => <div>
    <Connect query={query(`
query movieQuery{
  movie {
    gorilla
    monkey
  }
  chimp
}`)} children={({ data }) => {
    const DATA = data;
    return <div>
            <h2>{DATA.movie.gorilla}</h2>
            <p>{DATA.movie.monkey}</p>
            <p>{DATA.chimp}</p>
          </div>;
  }} />
  </div>;

You'll find more usage capabilities in the babel-plugin-blade test snapshots.

You can also find dedicated docs on our new Docs site!

Note:

babel-plugin-blade allows you to have a few more APIs than you have with this macro, but this macro comes with all the benefits of using babel-macros (which you can read about in the babel-macros docs).

Keywords

FAQs

Last updated on 14 Nov 2018

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc