Socket
Socket
Sign inDemoInstall

loopback-connector-fakemail

Package Overview
Dependencies
55
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    loopback-connector-fakemail

Connector for loopback email model. Save email data to json files and in single index.html file.


Version published
Weekly downloads
2
decreased by-50%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

loopback-connector-fakemail

Connector for loopback email model. Save email data to json files and in single index.html file.

Usage

Install npm i --save loopback-connector-fakemail

Add to server/datasources.json

{
  ...
  "email": {
    "name": "email",
    "connector": "fakemail",
    "path": "/tmp/fakemails"
  },
  ...

Params

Path

Absolute path to store emails. Default to /tmp/fakemails/

You can use datasources.local.js like this.

import { join } from 'path';

module.exports = {
    email: {
        name: 'email',
        connector: 'fakemail',
        path: join(__dirname, '../fake-emails')
    }
};

Keywords

FAQs

Last updated on 06 Apr 2015

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