Gathering detailed insights and metrics for gulp-etl-tap-mime
Gathering detailed insights and metrics for gulp-etl-tap-mime
Parse MIME files into gulp-etl's Message Stream JSON format
npm install gulp-etl-tap-mime
Typescript
Module System
Node Version
NPM Version
60.2
Supply Chain
79.1
Quality
71.5
Maintenance
25
Vulnerability
97.6
License
TypeScript (94.63%)
JavaScript (5.37%)
Total Downloads
767
Last Day
1
Last Week
8
Last Month
12
Last Year
77
19 Commits
1 Forks
2 Watching
15 Branches
2 Contributors
Minified
Minified + Gzipped
Latest Version
1.0.2
Package Id
gulp-etl-tap-mime@1.0.2
Unpacked Size
15.85 kB
Size
4.66 kB
File Count
8
NPM Version
6.4.1
Node Version
8.15.0
Cumulative downloads
Total Downloads
Last day
0%
1
Compared to previous day
Last week
300%
8
Compared to previous week
Last month
500%
12
Compared to previous month
Last year
-28%
77
Compared to previous year
11
This plugin converts MIME (Email) files to gulp-etl Message Stream files; originally adapted from the gulp-etl-handlelines model plugin. It is a gulp-etl wrapper for mailparser.
This is a gulp-etl plugin, and as such it is a gulp plugin. gulp-etl plugins work with ndjson data streams/files which we call Message Streams and which are compliant with the Singer specification. In the gulp-etl ecosystem, taps tap into an outside format or system (in this case, a MIME file) and convert their contents/output to a Message Stream, and targets convert/output Message Streams to an outside format or system. In this way, these modules can be stacked to convert from one format or system to another, either directly or with tranformations or other parsing in between. Message Streams look like this:
{"type": "SCHEMA", "stream": "users", "key_properties": ["id"], "schema": {"required": ["id"], "type": "object", "properties": {"id": {"type": "integer"}}}}
{"type": "RECORD", "stream": "users", "record": {"id": 1, "name": "Chris"}}
{"type": "RECORD", "stream": "users", "record": {"id": 2, "name": "Mike"}}
{"type": "SCHEMA", "stream": "locations", "key_properties": ["id"], "schema": {"required": ["id"], "type": "object", "properties": {"id": {"type": "integer"}}}}
{"type": "RECORD", "stream": "locations", "record": {"id": 1, "name": "Philadelphia"}}
{"type": "STATE", "value": {"users": 2, "locations": 1}}
gulp-etl plugins accept a configObj as the first parameter; the configObj will contain any info the plugin needs. For this plugin the configObj is the "options" object (OPTIONAL) for mailparser
/* parse all .MIME files in a folder into Message Stream files in a different folder */
let gulp = require('gulp')
var rename = require('gulp-rename')
var tapCsv = require('gulp-etl-tap-mime').tapMime
exports.default = function() {
return gulp.src('data/*.eml')
.pipe(tapMime({}))
.pipe(rename({ extname: ".ndjson" })) // rename to *.ndjson
.pipe(gulp.dest('output/'));
}
npm install
to install npm packagesOpen Folder
to open the project folder, then hit F5 to debug. This runs without compiling to javascript using ts-nodenpm test
or npm t
npm run build
We are using Jest for our testing. Each of our tests are in the test
folder.
npm test
to run the test suitesNote: This document is written in Markdown. We like to use Typora and Markdown Preview Plus for our Markdown work..
No vulnerabilities found.
No security vulnerabilities found.