
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
gulp-ng-apimock
Advanced tools
Gulp plugin that wraps around ng-apimock which provides the ability to use scenario based api mocking for local development and protractor testing
Gulp plugin that wraps around ng-apimock which provides the ability to use scenario based api mocking:
This plugin requires Gulp
If you haven't used Gulp before, be sure to check out the Getting Started guide, as it explains how to create a Gulpfile as well as install and use Gulp plugins. Once you're familiar with that process, you may install this plugin with this command:
npm install gulp-ng-apimock --save-dev
const gulp = require('gulp');
const ngApimock = require('gulp-ng-apimock');
gulp.task('ngApimock', function() {
ngApimock.run({
src: "test/mocks",
outputDir: "path/to/outputDir",
done: function() {
// async
}
});
});
This task will process the mock data provided in the configuration and make it accessible for connect as middleware.
see Howto use global variables
To be able to use the selected mocks you need to do two things:
When running gulp-connect you can do add the following middleware block to your configuration
gulp.task('connect', function() {
var connect = require('gulp-connect');
connect.server({
root: "src",
middleware: function(connect, opt) {
return [
(require('ng-apimock/lib/utils').ngApimockRequest),
// ...
]
}
});
});
When running browser-sync you can do add the following middleware block to your configuration
gulp.task('browser-sync', function() {
var browserSync = require('browser-sync').create();
browserSync.init({
server: {
baseDir: "src"
},
middleware: [
(require('ng-apimock/lib/utils').ngApimockRequest),
// ...
]
});
});
When running gulp-connect you can do add the following middleware block to your configuration
gulp.task('connect', function() {
var connect = require('gulp-connect');
var serveStatic = require('serve-static');
connect.server({
root: "src",
middleware: function(connect, opt) {
return [
(require('ng-apimock/lib/utils').ngApimockRequest),
connect().use('/mocking', serveStatic('path/to/outputDir'))
// ...
]
}
});
});
When running browser-sync you can do add the following staticServe block to your configuration
gulp.task('browser-sync', function() {
var browserSync = require('browser-sync').create();
browserSync.init({
server: {
baseDir: "src"
},
serveStatic: [{
route: '/mocking',
dir: 'path/to/outputDir'
}],
middleware: [
(require('ng-apimock/lib/utils').ngApimockRequest),
// ...
]
});
});
see Howto use for local development
see Howto use for your protractor tests
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Gulp.
FAQs
Gulp plugin that wraps around ng-apimock which provides the ability to use scenario based api mocking for local development and protractor testing
The npm package gulp-ng-apimock receives a total of 60 weekly downloads. As such, gulp-ng-apimock popularity was classified as not popular.
We found that gulp-ng-apimock demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.