Socket
Socket
Sign inDemoInstall

lincd-server-utils

Package Overview
Dependencies
345
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    lincd-server-utils


Version published
Maintainers
1
Install size
85.6 MB
Created

Readme

Source

lincd-server-utils

provides a set of utilities for applications with a lincd-server backend.

Server

import {Server } from 'lincd-server-utils/lib/utils/Server';

Call the server from the frontend.

LinkedEmail

Send emails from anywhere in the backend.

Make sure to install an email client first, like lincd-zeptomail. By adding lincd-zeptomail to your project (in package.json), it will automatically be used as the default email client.

After this, you can send emails from anywhere in the backend.

LinkedEmail.sendEmail({
  ...
});

Setting a default provider

If you want to implement an email client, you can use LinkedEmail.setDefaultProvider to set the default email client. You can do this in the constructor of your backend provider. Here is an example:

import {LinkedEmail} from 'lincd-server-utils/lib/utils/LinkedEmail';
// import your email client from this package 
import {MyMailClient} from './utils/MyMailClient';
import {BackendProvider} from 'lincd-server-utils/lib/utils/BackendProvider';
export class MyBackendProvider extends BackendProvider {
    constructor(s) {
      super(s);
      LinkedEmail.setDefaultProvider(new MyMailClient());
    }
}

Keywords

FAQs

Last updated on 30 May 2024

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc