This package has been deprecated

Author message:

Switch to @vighnesh153/github-gist. It has some minor API changes

simple-github-gist-api
TypeScript icon, indicating that this package has built-in type declarations

2.0.124 • Public • Published

Simple Github Gist API

npm (scoped) npm bundle size (scoped) npm GitHub GitHub issues

Use this promise based API to store data on your github gists without the need to manually make those tedious HTTP requests.

Note: This documentation is for v2 of the lib. v2 has a few breaking changes. You can find the v1 documentation in the docs directory (On Github).

Installation

npm i -S simple-github-gist-api

Usage

Import (In Typescript)

import GithubGist from 'simple-github-gist-api'

Require (In Javascript)

const GithubGist = require("simple-github-gist-api");

Instantiate

  • Generate a Github PAT with gist scope selected. Keep this a secret as an environment variable. This will be used to create and update the gists.
const githubGist = new GithubGist({
  // Required
  personalAccessToken: 'YOUR-github-personal-access-token',

  // Required: App-Identifier -> You can make use of your Application 
  // name but make sure it is hyphen/underscore separated.
  appIdentifier: 'MyTestApp',
  
  // Optional: Doing this will allow the gist to be read by anyone. Just like a public 
  // repository on Github. Setting it false, will allow both read and write
  // only with Github PAT.
  isPublic: false,
  
  // Optional: If using on the server side, you can set it to false. But if you are, for 
  // some reason, using this package on front-end app, set it to `true`. This
  // will, behind the scenes, use `https://cors-anywhere.herokuapp.com/` prefix
  // to avoid CORS error. Note: Heroku may sometimes be slow. If you have your own
  // proxy server, you can use that as your custom prefix instead, too.
  cors: {
    addPrefix: true,
    customPrefix: (someURl) => `YourCustomPrefix` + someURl,
  },
});

Do use same identifier when re-starting the application. This is the thing that will be used to identify your previously stored Github Gist. For different applications, use different identifiers, unless you want to share the Github gist among applications.

Gist initialization

The following just syncs up with the Github Gist server to fetch all the latest data. If running for the first time, it will create the gist for you with the above configurations.

try {
    await githubGist.touch();

    console.log("Gist ID", githubGist.id);
    console.log("Github Owner Username", githubGist.ownerUsername);
} catch (e) {
    // gist initialization failed.
    // console.log(e)
}

Get all file names

const fileNames: string[] = githubGist.getFileNames();

Create a file

The content of any file will always be string. If you want to have a json file, store it's content by deserializing it via JSON.stringify or any method you prefer.

gist.createFile('projects.json', '{ "a": 123 }')

Creates a file in the gist. If file already exists, it over-writes the content of the file. Returns true, if the file was newly created. Returns false, if the file already exists and over-writes its content

Get a file

Returns the file instance.

const projectsFile = gist.getFile('projects.json');

Get content of the file

Returns the file content.

const content: string = projectsFile.getContent();

Overwrite the file with new content

projectsFile.overwrite('{ "a": 456 }');

Save the file on the server.

await projectsFile.save();

If multiple files have updates, you can bulk save all the files

await gist.save();

Only files that have un-saved changes will be saved.

Gotchas

Github Gist's API work on commit-id basis. If you save anything, it is a new commit and the commit-id changes. So, when you save, don't do that simultaneously.

For instance, assume you have an endpoint /create-file. And if multiple people making request at the same time:

/create-file?name=1.json
/create-file?name=2.json
/create-file?name=3.json
...

then we cannot guarantee that the all the files will be saved. When creating 2.json and 3.json, there is a possibility that we make use of the same commit-id at HEAD. Both will work but 1 will over-write the other commit.

But if you do the following, it will work as the latest commit-id will be fetched when saving each file.

const file1 = gist.createFile('1.json', "{}")
const file2 = gist.createFile('2.json', "{}")
const file3 = gist.createFile('3.json', "{}")

await file1.save();
await file2.save();
await file3.save();

Or even this will work as well because all the changes will be pushed in a single commit.

gist.save();

Sample

import GithubGist from "./src";

const personalAccessToken = "";

const githubGist = new GithubGist({
  appIdentifier: 'MyTestApp',
  personalAccessToken,
  cors: {
    addPrefix: true,
    customPrefix: (someURl) => `YourCustomPrefix` + someURl,
  },
});

(async () => {
  await githubGist.touch();

  console.log("Gist ID", githubGist.id);
  console.log("Github Username", githubGist.ownerUsername);

  console.log("Original File names", githubGist.getFileNames());

  const created = githubGist.createFile("projects.json", "{}");
  if (created) {
    console.log('Created new file in gist');
  } else {
    console.log('Updated existing file in gist');
  }

  // Note: All the creates and updates happen in-memory. You have to
  // explicitly invoke the `save` method on either the entire gist instance
  // or the individual file instance.

  // Saves all the files in the gist. Only the un-saved changes will be
  // added to the payload.
  await githubGist.save();

  // Save individual file.
  // const file = githubGist.getFile('projects.json');
  // await file.save();

  console.log("File names", githubGist.getFileNames());
})();

Package Sidebar

Install

npm i simple-github-gist-api

Weekly Downloads

406

Version

2.0.124

License

GPL-3.0-or-later

Unpacked Size

31.6 kB

Total Files

19

Last publish

Collaborators

  • vighnesh153