![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
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 111 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.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.