@dekproject/snovio

0.0.1 • Public • Published

@dekproject/snovio

Snov.io interface plugin for DEK

What does this plugin do?

  • Control configuration for connection to Snov.io in production development mode in a simplified way with dotenv
  • Performs connection implementation along the lines ES6 being pre requirement to start the project

Instalation

To install the bootstrap we recommend using the CLI

$ yarn add @dekproject/snovio --save
$ nano .env

In the .env file add the following settings

SNOVIO_USERID=
SNOVIO_SECRET=

Usage

Using direct

$ npm i @dekproject/scope

Using in the standard DEK skeleton

import { $, app, snovio } from "@dekproject/scope";

app.get("emailverifier", (req, res) => {
    snovio.getEmailVerifier(req.query.emails).then((res) => {
        res.send(res).end();
    }).catch((err) => {
        res.status(500).send(err).end();
    });
});

$.wait("snovio").then(() => {
    app.listen(PORT, () => {
        console.log(`App listening on port ${PORT}!`);
    });
});

Readme

Keywords

Package Sidebar

Install

npm i @dekproject/snovio

Weekly Downloads

1

Version

0.0.1

License

MIT

Unpacked Size

5.66 kB

Total Files

6

Last publish

Collaborators

  • gislainyvelasco
  • andrehrf