Coder Social home page Coder Social logo

scorebet / graphql-tag-swc-plugin Goto Github PK

View Code? Open in Web Editor NEW

This project forked from rishabh3112/graphql-tag-swc-plugin

0.0 0.0 0.0 1.2 MB

SWC plugin to expand gql template literal during build itself

Home Page: https://www.npmjs.com/package/graphql-tag-swc-plugin

JavaScript 74.93% Rust 25.07%

graphql-tag-swc-plugin's Introduction

graphql-tag-swc-plugin

This plugin is used in the sportsbook-web repo to compile the GQL queries at build time instead of runtime.

SWC plugin alternative to babel-plugin-graphql-tag

Installation

npm install -D graphql-tag-swc-plugin

Usage

SWC

Add following to swc config (below with default values):

jsc: {
  experimental: {
    plugins: [
      ["graphql-tag-swc-plugin",
        {
          importSources: ["@apollo/client", "graphql-tag"],
          gqlTagIdentifiers: ["gql"]
        },
      ],
    ],
  },
},

Next js

Add following to next config (below with default values):

experimental: {
  swcPlugins: [
    ["graphql-tag-swc-plugin",
      {
        importSources: ["@apollo/client", "graphql-tag"],
        gqlTagIdentifiers: ["gql"]
      },
    ],
  ],
},

Configuration

Following props are accepted by plugin currently, inline with babel alternative:

  1. importSources:

    default: ["@apollo/client", "graphql-tag"]

import paths from where gql tag is imported for which plugin should compile graphql

  1. gqlTagIdentifiers:

    default: ["gql"]

Identifier by which graphql-tag will be imported. Example: Here import { gql } from "@apollo/client, "gql" is the identifier.

  1. strip:

    default: false

If true, it pre-process graphql input to remove redundant (like whitespace and comments) characters by passing it through apollo_parser's lexer. This results in smaller AST in some cases and smaller footprint in bundle size.

Contribution

All contributions are welcome! For any bug / feature request please create a Pull request with fixture for the same whenever possible.

Pre-requisites

Here is list of topics and resources to quickly get you up to contributing!

  1. Rust: https://www.rust-lang.org/learn

  2. AST and Visitors: https://notairy.vercel.app/note/ast and https://patshaughnessy.net/2022/1/22/visiting-an-abstract-syntax-tree

  3. SWC: https://swc.rs/

Architecture

Here is the basic code walkthrough (updated at v0.1.4) code walkthrough

Authors

  • @rishabh3112 - Rishabh Chawla

License

MIT

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.