1.0.15-canary.283.487e58b.0 • Published 5 years ago

codelift v1.0.15-canary.283.487e58b.0

Weekly downloads
1,644
License
-
Repository
-
Last release
5 years ago

codelift

A "No Code" GUI for your existing React app.

Next.js ExampleLaunch Tweet

Getting Started

Within your project:

  1. yarn add codelift --dev
  2. For create-react-app:

    yarn codelift start

    For Next.js:

    yarn codelift dev

    (codelift runs yarn ____ with whatever you provide)

  3. Add the following import "codelift/register" to the top of your src/index.tsx or pages/_app.tsx:

    import React from "react";
    import ReactDOM from "react-dom";
    
    import { register } from "codelift";
    register({ React, ReactDOM });

    codelift requires access to your application's copy of react and react-dom to support custom inspectors.

Examples

Features

  • Double-Click componetns & elements in the tree view to open in VS Code.

  • Tailwind Visual Inspector

    1. Hover & Select an element.
    2. Find-as-you-type CSS classes.
    3. Hover to preview before applying.
    4. Click to toggle in your source code.
  • CMD+' to toggle codelift and browse normally.

  • Custom Inspectors:

    Suppose you have Header component that accepts a title:

    export const Header = ({ title }) => {
      ...
    }

    Next, attach a custom Inspector component to your Header that accepts the current props and calls setProps when it changes:

    Header.Inspector = ({ props, setProps }) => {
      return (
        <input
          onChange={event => setProps({ title: event.target.value })}
          defaultValue={props.title}
        />
      );
    };

    Your Inspector will be rendered in a sidepanel when a Header is selected:

    Header Inspector

Contributing

  1. Clone this repo.
  2. yarn cra or yarn next to run the CRA or Next.js examples, respectively.

Author

  • Eric Clemmons

Contributors ✨

Thanks goes to these wonderful people (emoji key):

This project follows the all-contributors specification. Contributions of any kind welcome!

1.0.14

5 years ago

1.0.13

5 years ago

1.0.12

6 years ago

1.0.11

6 years ago

1.0.9

6 years ago

1.0.8

6 years ago

1.0.7

6 years ago

1.0.10

6 years ago

1.0.6

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.0

6 years ago

0.6.3

6 years ago

0.6.2

6 years ago

0.6.1

6 years ago

0.6.0

6 years ago

0.5.1

6 years ago

0.5.0

6 years ago

0.4.1

6 years ago

0.4.0

6 years ago

0.3.2

6 years ago

0.3.1

6 years ago

0.3.0

6 years ago

0.2.4

6 years ago

0.2.3

6 years ago

0.2.2

6 years ago

0.2.1

6 years ago

0.2.0

6 years ago

0.1.20

6 years ago

0.1.19

6 years ago

0.1.17

6 years ago

0.1.18

6 years ago

0.1.16

6 years ago

0.1.15

6 years ago

0.1.14

6 years ago

0.1.13

6 years ago

0.1.12

6 years ago

0.1.11

6 years ago

0.1.10

6 years ago

0.1.9

6 years ago

0.1.8

6 years ago

0.1.7

6 years ago

0.1.6

6 years ago

0.1.5

6 years ago

0.1.4

6 years ago

0.1.3

6 years ago

0.1.2

6 years ago

0.1.1

6 years ago