
Product
Introducing Tier 1 Reachability: Precision CVE Triage for Enterprise Teams
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
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
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.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.