Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

fauna-shell

Package Overview
Dependencies
Maintainers
2
Versions
82
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fauna-shell

faunadb shell

  • 3.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1.1K
increased by0.45%
Maintainers
2
Weekly downloads
 
Created
Source

Fauna CLI

The Fauna CLI lets you access Fauna from your terminal. You can use the CLI to:

  • Log in to your Fauna account.
  • Create and manage Fauna databases and keys.
  • Manage database schema as .fsl files on your local machine.
  • Run FQL queries from files or in an interactive shell.

fauna-cli

Requirements

Node.js v18.x or later.

Installation

Install the Fauna CLI globally using npm:

npm install -g fauna-shell

To upgrade the CLI, run:

npm update -g fauna-shell

Documentation

For usage instructions and a full list of commands, see the Fauna docs.

You can also access help directly in the CLI by running:

# For general help:
fauna --help

# For a specific command:
fauna <COMMAND> --help
# For example:
fauna eval --help

Development

To test changes during development, follow these steps:

  1. Install the required packages:

    yarn install
    
  2. You can run commands in dev in one of two ways:

    • Option 1: Run against the just-in-time built project with development settings:

      # Run `fauna cloud-login` in dev:
      ./bin/dev cloud-login
      
      # Run `fauna eval` in dev:
      ./bin/dev eval
      
    • Option 2: Run against built assets. Use yarn link to place them in your $PATH as if globally installed:

      # Build the package and place it in your $PATH:
      yarn build && yarn link
      # Run CLI commands using `fauna ...`:
      fauna eval
      

Keywords

FAQs

Package last updated on 18 Oct 2024

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc