New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@anxolin/mail

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@anxolin/mail - npm Package Compare versions

Comparing version 0.1.1 to 0.1.2

8

package.json
{
"name": "@anxolin/mail",
"version": "0.1.1",
"version": "0.1.2",
"description": "Simple mail repository",
"main": "src/repositories/mailRepo",
"dependencies": {
"dotenv": "^6.0.0"
"dotenv": "^6.0.0",
"nodemailer": "^4.6.7"
},
"devDependencies": {
"jest": "^23.1.0",
"nodemailer": "^4.6.7"
"jest": "^23.1.0"
},

@@ -13,0 +13,0 @@ "scripts": {

@@ -10,3 +10,3 @@ # node-mail

```bash
yarn add anxolin/node-mail --save # npm install anxolin/mail --save
yarn add @anxolin/mail --save # npm install @anxolin/mail --save
```

@@ -16,3 +16,3 @@

```js
const nodeMail = require('node-mail')({
const mailSender = require('@anxolin/mail')({
user: 'your-user',

@@ -24,3 +24,3 @@ password: 'your-password',

// Verify the connection
nodeMail
mailSender
.verify()

@@ -30,3 +30,3 @@ .then(success => console.log('Mail connection result: %s', success))

nodeMail
mailSender
.sendMail({

@@ -45,3 +45,3 @@ from: 'foo@example.com',

```js
const nodeMail = require('node-mail')(config)
const mailSender = require('@anxolin/mail')(config)
```

@@ -48,0 +48,0 @@

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