New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

flybase-js

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

flybase-js

JS is the isomorphic Flybase library

latest
Source
npmnpm
Version
0.20.0
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

Flybase-js

JS is the isomorphic Flybase library

This library combines the flybase-js and flybase-node libraries into one single intermingable isomorphic library.

Installation

NPM

To install via NPM:

npm install flybase-js --save

CDN

To install with a CDN (content delivery network) add the following scripts to the bottom of your <body> tag, but before you use any Flybase services:

<script src="https://cdn.jsdelivr.net/npm/flybase-js"></script>

or even:

<script src="https://unpkg.com/flybase-js"></script>

Getting Started

<html>
	<head>
		<script src="node_modules/flybase-js/dist/js/flybase.js"></script>
	</head>
	<script>
		const flybase = new Flybase({
			apiKey: 'YOUR_API_KEY',
			database: 'YOUR-APP',
			collection: 'YOUR-COLLECTION'
		});

		flybase.print();
	</script>
</html>

Server

const Flybase = require("flybase-js");

const flybase = new Flybase({
	apiKey: 'YOUR_API_KEY',
	database: 'YOUR-APP',
	collection: 'YOUR-COLLECTION'
});

flybase.print();

FAQs

Package last updated on 29 Jun 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts