1.0.27 • Published 8 days ago

@builder.io/sdk-react v1.0.27

Weekly downloads
-
License
-
Repository
github
Last release
8 days ago

Builder.io React SDK v2

This is the React v2 SDK, @builder.io/sdk-react. It is a complete rewrite of the React SDK, and has the following benefits:

  • zero client-side dependencies
  • far smaller bundle size (25kb)

NOTE: if you are using the SDK in a webapp that gets deployed on a serverless environment (like Next or Hydrogen), you might need to import the SDK from @builder.io/sdk-react/edge. This is a special import that handles edge cases surrounding serverless environments.

API Reference

To use the SDK, you need to:

  • fetch the builder data using fetchOneEntry: you can see how to use it here https://www.builder.io/c/docs/content-api, and how it differs from the React V1 SDK's builder.get() function.

  • pass that data to the Content component. Here is a simplified example showing how you would use both:

import { Content, fetchOneEntry, isPreviewing } from '@builder.io/sdk-react';
import { useEffect, useState } from 'react';

const BUILDER_PUBLIC_API_KEY = 'YOUR API KEY';

function App() {
  const [content, setContent] = useState(undefined);

  useEffect(() => {
    fetchOneEntry({
      model: 'page',
      apiKey: BUILDER_PUBLIC_API_KEY,
      userAttributes: {
        urlPath: window.location.pathname || '/',
      },
    }).then((content) => {
      setContent(content);
    });
  }, []);

  const shouldRenderBuilderContent = content || isPreviewing();

  return shouldRenderBuilderContent ? (
    <Content content={content} model="page" apiKey={BUILDER_PUBLIC_API_KEY} />
  ) : (
    <div>Content Not Found</div>
  );
}

Look at the examples for more information.

Mitosis

This SDK is generated by Mitosis. To see the Mitosis source-code, go here.

Feature Support

To check the status of the SDK, look at these tables.

Getting Started

npm install @builder.io/sdk-react

Examples

Fetch

This Package uses fetch. See these docs for more information.

1.0.27

8 days ago

1.0.26

9 days ago

1.0.25

10 days ago

1.0.24

13 days ago

1.0.23

16 days ago

1.0.22

20 days ago

1.0.19-dev-2

21 days ago

1.0.19-dev-3

21 days ago

1.0.19-dev-1

21 days ago

1.0.21

21 days ago

1.0.20

22 days ago

1.0.19-dev-0

23 days ago

1.0.19

24 days ago

1.0.17

1 month ago

1.0.16

1 month ago

1.0.15

2 months ago

1.0.14

2 months ago

1.0.13

2 months ago

1.0.12

2 months ago

1.0.11

2 months ago

1.0.9

2 months ago

1.0.8

2 months ago

1.0.7

2 months ago

1.0.6

2 months ago

1.0.4

2 months ago

1.0.3

3 months ago

1.0.2

3 months ago

1.0.0

3 months ago

0.13.4

3 months ago

0.13.2

3 months ago

0.13.3

3 months ago

0.13.1

3 months ago

0.13.0

3 months ago

0.12.8

3 months ago

0.12.7

3 months ago

0.12.6

3 months ago

0.12.4

3 months ago

0.12.5

3 months ago

0.12.2

3 months ago

0.12.3

3 months ago

0.12.1

4 months ago

0.11.5

4 months ago

0.12.0

4 months ago

0.11.3

4 months ago

0.11.4

4 months ago

0.11.2

4 months ago

0.11.0

4 months ago

0.11.1

4 months ago

0.10.0

4 months ago

0.9.0

4 months ago

0.8.1

4 months ago

0.8.0

4 months ago

0.7.6

4 months ago

0.7.5

4 months ago

0.7.4

5 months ago

0.7.2

5 months ago

0.7.3

5 months ago

0.7.1

5 months ago

0.7.1-1

6 months ago

0.7.1-0

6 months ago

0.5.4

9 months ago

0.5.6

9 months ago

0.5.5

9 months ago

0.5.0

9 months ago

0.7.0

6 months ago

0.5.2

9 months ago

0.5.1

9 months ago

0.5.8

9 months ago

0.5.7

9 months ago

0.5.9

9 months ago

0.5.1-0

9 months ago

0.6.3

7 months ago

0.4.5

10 months ago

0.6.2

8 months ago

0.4.4

10 months ago

0.6.4

7 months ago

0.6.1

8 months ago

0.4.3

10 months ago

0.6.0

8 months ago

0.4.2

11 months ago

0.4.1

11 months ago

0.4.0

11 months ago

0.3.1

12 months ago

0.2.3-4

1 year ago

0.2.3-3

1 year ago

0.2.3-2

1 year ago

0.2.3-1

1 year ago

0.2.3-0

1 year ago

0.2.1

1 year ago

0.2.3

1 year ago

0.2.2

1 year ago

0.1.10

1 year ago

0.1.11

1 year ago

0.1.12

1 year ago

0.1.13

1 year ago

0.1.14

1 year ago

0.1.15

1 year ago

0.2.0

1 year ago

0.1.16

1 year ago

0.0.6-0

1 year ago

0.1.0

1 year ago

0.1.2

1 year ago

0.1.1

1 year ago

0.1.8

1 year ago

0.1.7

1 year ago

0.1.9

1 year ago

0.1.4

1 year ago

0.0.5

1 year ago

0.1.3

1 year ago

0.1.6

1 year ago

0.1.5

1 year ago

0.0.3

2 years ago

0.0.4

1 year ago

0.0.1

2 years ago

0.0.2

2 years ago

0.0.1-3

2 years ago

0.0.1-2

2 years ago

0.0.1-6

2 years ago

0.0.1-5

2 years ago

0.0.1-4

2 years ago

0.0.1-1

2 years ago

0.0.1-0

2 years ago