Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
swagger-mock-api
Advanced tools
#mock-api
This module is a connect-compatible middleware generating function that generates an API based on a Swagger 2.0 compatible YAML file. All data returned is generated by chance.
The primary use case is to be run as a middleware for grunt-contrib-connect. Run the following command:
npm install swagger-mock-api
Assuming the API is to be run from a grunt
task, ensure the following module has also been installed via npm:
If you're not auto-loading grunt tasks, find in your Gruntfile where the tasks are being loaded and add the line:
grunt.loadNpmTasks('grunt-contrib-connect');
Then, configure a task like so:
var path = require('path');
var mockApi = require('path to mockApi');
grunt.initConfig({
connect: {
server: {
options: {
middleware: [
mockApi({
yamlPath: path.join(__dirname, 'relative path to swagger yaml file')
})
],
},
},
},
});
Swagger specifies only a few primitive types; for scenarios where specific chance methods are needed, use the x-chance-type
field.
...
definitions:
NewPet:
properties:
name:
type: string
x-chance-type: name
tag:
type: string
x-chance-type: guid
Most of the chance methods allow some fine-tuning of the returned data. For example, the integer method allows specification of minimum and maximum output values. These options can be configured in the Swagger YAML file with the x-chance-options
block:
...
definitions:
Pet:
allOf:
- $ref: '#/definitions/NewPet'
- required:
- id
properties:
id:
type: integer
format: int64
x-type-options:
min: 1
max: 1000
FAQs
Creates a connect middleware mock API from a Swagger 2.0 YAML file
The npm package swagger-mock-api receives a total of 46 weekly downloads. As such, swagger-mock-api popularity was classified as not popular.
We found that swagger-mock-api 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.