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

@friggframework/core

Package Overview
Dependencies
Maintainers
0
Versions
195
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@friggframework/core

  • 1.2.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
38
increased by72.73%
Maintainers
0
Weekly downloads
 
Created
Source

Frigg Core

The frigg-core package is the heart of the Frigg Framework. It contains the core functionality and essential modules required to build and maintain integrations at scale.

Table of Contents

  • Introduction
  • Features
  • Installation
  • Usage
  • Modules
  • Contributing
  • License

Introduction

The Frigg Core package provides the foundational components and utilities for the Frigg Framework. It is designed to be modular, extensible, and easy to integrate with other packages in the Frigg ecosystem.

Features

  • Associations: Manage relationships between different entities.
  • Database: Database utilities and connectors.
  • Encryption: Secure data encryption and decryption.
  • Error Handling: Standardized error handling mechanisms.
  • Integrations: Tools for building and managing integrations.
  • Lambda: Utilities for AWS Lambda functions.
  • Logging: Structured logging utilities.
  • Module Plugin: Plugin system for extending core functionality.
  • Syncs: Synchronization utilities for data consistency.

Installation

To install the frigg-core package, use npm or yarn:

npm install @friggframework/core
# or
yarn add @friggframework/core

Usage

Here's a basic example of how to use the frigg-core package:

const { encrypt, decrypt } = require('@friggframework/core/encrypt');
const { logInfo } = require('@friggframework/core/logs');

const secret = 'mySecret';
const encrypted = encrypt(secret);
const decrypted = decrypt(encrypted);

logInfo(`Encrypted: ${encrypted}`);
logInfo(`Decrypted: ${decrypted}`);

Modules

The frigg-core package is organized into several modules:

  • Associations: @friggframework/core/associations
  • Database: @friggframework/core/database
  • Encryption: @friggframework/core/encrypt
  • Errors: @friggframework/core/errors
  • Integrations: @friggframework/core/integrations
  • Lambda: @friggframework/core/lambda
  • Logs: @friggframework/core/logs
  • Module Plugin: @friggframework/core/module-plugin
  • Syncs: @friggframework/core/syncs

Each module provides specific functionality and can be imported individually as needed.

Contributing

We welcome contributions from the community! Please read our contributing guide to get started. Make sure to follow our code of conduct and use the provided pull request template.

License

This project is licensed under the MIT License. See the LICENSE.md file for details.


Thank you for using Frigg Core! If you have any questions or need further assistance, feel free to reach out to our community on Slack or check out our GitHub issues page.

FAQs

Package last updated on 09 Aug 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