GithubHelp home page GithubHelp logo

useflyyer / flyyer-js Goto Github PK

View Code? Open in Web Editor NEW
17.0 2.0 0.0 2.54 MB

SaaS to manage, optimize and generate your og:image og-image

Home Page: https://flyyer.io

License: MIT License

JavaScript 34.58% TypeScript 65.42%
node javascript open-graph image-generator twitter-cards social-preview flyyer typescript expressjs nextjs

flyyer-js's Introduction

flyyer-js

npm-version downloads size tree-shake

Format URLs to generate social media images using Flyyer.io.

To create templates with React.js or Vue.js use create-flyyer-app ๐Ÿ‘ˆ

Flyyer live image

This module is agnostic to any JS framework and has only one dependency: qs.

Index

Get started (5 minutes)

1. Install module

This module supports Node.js, Browser and can be bundled with any tool such as Rollup, Webpack, etc and includes Typescript definitions.

yarn add @flyyer/flyyer

# or with npm:
npm install --save @flyyer/flyyer

2. Flyyer.io smart image link

Haven't registered your website yet? Go to Flyyer.io and import your website to create a project (e.g. website-com).

For each of your routes, create an instance.

import { Flyyer } from "@flyyer/flyyer";

const flyyer = new Flyyer({
  // Your project slug
  project: "website-com",
  // Relative path
  path: `/path/to/product`,
  // Optional: preserve and re-use your default or current image.
  // default: "/images/default-image.png",
});

console.log(flyyer.href());
// > https://cdn.flyyer.io/v2/website-com/_/__v=1618281823/path/to/product

2.1 Next.js

Remember to dynamically get the current path for each page. If you are using Next.js you should probably do this:

import { useRouter } from 'next/router'

function SEO() {
  const router = useRouter();
  const flyyer = new Flyyer({
    project: "my-project",
    path: router.asPath,
    // default: product["image"],
  });
  // ...
}

Check our official Next.js documentation here;

3. Setup <head> meta tags

You'll get the best results doing this:

<meta property="og:image" content={flyyer.href()} />
<meta name="twitter:image" content={flyyer.href()} />
<meta name="twitter:card" content="summary_large_image" />

4. Manage rules

Login at Flyyer.io, select your project and go to Manage rules. Then create a rule like the following:

Flyyer basic rule example

Voilร ! To create templates with React.js or Vue.js use create-flyyer-app ๐Ÿ‘ˆ

Advanced usage

Advanced features include:

  • Custom variables: additional information for your preview that is not present in your website. [Note: if you need customization you should take a look at Flyyer Render]
  • Custom metadata: set custom width, height, resolution, and more (see example).
  • Signed URLs.

Here you have a detailed full example for project website-com and path /path/to/product.

import { Flyyer } from "@flyyer/flyyer";

const flyyer = new Flyyer({
  // Project slug, find it in your dashboard https://flyyer.io/dashboard/.
  project: "website-com",
  // The current path of your website (by default it's `/`).
  path: "/path/to/product",

  // [Optional] Keep and re-use your current image.
  default: product["image"],

  // [Optional] In case you want to provide information that is not present in your page set it here.
  variables: {
    title: "Product name",
    img: "https://flyyer.io/img/marketplace/flyyer-banner.png",
  },
  // [Optional] Additional variables.
  meta: {
    id: "jeans-123", // stats identifier (e.g. product SKU), defaults to `path`.
    width: 1080, // force width (pixels).
    height: 1080, // force height (pixels).
    v: null, // cache-burst, to circumvent platforms' cache, default to a timestamp, null to disable.
  },
});

Read more about integration guides here: https://docs.flyyer.io/guides

Flyyer Lite

If you are not using Signed URLs you can opt-in for @flyyer/flyyer-lite which is a lightweight version because it doesn't include crypto functions.

yarn add @flyyer/flyyer-lite

Usage is the same:

import { Flyyer } from "@flyyer/flyyer-lite";
// ...

FlyyerRender

  • Flyyer uses the rules defined on your dashboard to decide how to handle every image. It analyse your website to render a content-rich image. Let's say "Flyyer renders images based on the content of this route".

  • FlyyerRender instead requires you to explicitly declare template and variables for the images to render, giving you more control for customization. Let's say "FlyyerRender renders an image using this template and these explicit variables".

import { FlyyerRender } from "@flyyer/flyyer";
const flyyer = new FlyyerRender({
  tenant: "flyyer",
  deck: "default",
  template: "main",
  variables: { title: "try changing this" },
});
const url = flyyer.href()
// https://cdn.flyyer.io/r/v2/flyyer/default/main.jpeg?title=try+changing+this

Resultant flyyer live image

After installing this module you can format URLs. Here is an example with React.js, but note this can be used with any framework:

import React from "react";
import { FlyyerRender } from "@flyyer/flyyer";

function Head() {
  const flyyer = new FlyyerRender({
    tenant: "tenant",
    deck: "deck",
    template: "template",
    variables: {
      title: "Hello world!",
      image: "https://yoursite.com/image/products/1.png",
    },
  });
  const url = flyyer.href();

  return (
    <head>
      <meta property="og:image" content={url} />
      <meta name="twitter:image" content={url} />
      <meta name="twitter:card" content="summary_large_image" />
    </head>
  );
}

Variables can be complex arrays and objects.

const flyyer = new FlyyerRender({
  // ...
  variables: {
    items: [
      { text: "Oranges", count: 12 },
      { text: "Apples", count: 14 },
    ],
  },
  meta {
    id: "slug-or-id", // To identify the resource in our analytics report
  }
});

IMPORTANT: variables must be serializable.

You can set image dimensions, note if your are planing to use this as <img src={flyyer.href()} /> you should disable cache-bursting.

const flyyer = new FlyyerRender({
  tenant: "tenant",
  deck: "default",
  template: "main",
  variables: {
    title: "Awesome ๐Ÿ˜ƒ",
    description: "Optional description",
  },
  meta: {
    v: null, // prevent cache-bursting in browsers
    width: 1080, // in pixels
    height: 1920, // in pixels
  }
});

<img src={flyyer.href()}>

Resultant flyyer live image

To create templates with React.js or Vue.js use create-flyyer-app ๐Ÿ‘ˆ


Development

Prepare the local environment:

yarn install

To decode an URL for debugging purposes:

console.log(decodeURI(url));
// > https://cdn.flyyer.io/r/v2/tenant/deck/template.jpeg?title=Hello+world!&__v=123

Helpers to compare instances (ignores __v param and performs a shallow compare of variables).

import {
  isEqualFlyyer,
  isEqualFlyyerRender,
  isEqualFlyyerMeta,
} from "@flyyer/flyyer";
import { dequal } from "dequal/lite";

const boolean = isEqualFlyyer(fio1, fio2, dequal);

Test

To run tests:

yarn test

FAQ

What is the difference between Flyyer and FlyyerRender?

  • Flyyer uses the rules defined on your dashboard to decide how to handle every image. It analyse your website to render a content-rich image. Let's say "Flyyer renders images based on the content of this route".

  • FlyyerRender instead requires you to explicitly declare template and variables for the images to render, giving you more control for customization. Let's say "FlyyerRender renders an image using this template and these explicit variables".

Is it compatible with Nextjs, React, Vue, Express and other frameworks?

This is framework-agnostic, you can use this library on any framework on any platform.

How to configure Flyyer rules?

Visit your project rules and settings on the Flyyer Dashboard.

What is the __v= thing?

Most social networks caches images, we use this variable to invalidate their caches but we ignore it on our system to prevent unnecessary renders. We strongly recommend it and its generated by default.

Pass meta: { v: null } to disabled it (not recommended).

flyyer-js's People

Contributors

dependabot[bot] avatar fnmendez avatar lopezjurip avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

flyyer-js's Issues

CI is broken

To be honest I don't know why.

Error : .github#L1
every step must define a `uses` or `run` key

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.