New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@wn90674/mock-server

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@wn90674/mock-server

just used for [my-self-vue-template](https://github.com/wn90674/vite-tpl) so don't used in any production ## Installation

  • 0.1.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

important

just used for my-self-vue-template so don't used in any production

Installation

step1: install tsx global
npm i --location=global tsx 
step2: install mock-server
npm i @wn90674/mock-server --save-dev 
step3: create mock data
mkdir src/mock
touch test.mock.mjs

filename should be **.mock.js**.mock.mjs**.mock.ts

// login.mock.mjs
export const login = {
  url: '/api/login',
  // default get
  method: 'post',
  // support mockjs
  data: {
    id: '@id',
    userName: '@cname',
    'sex|1': ['0', '1']
  }
}

you can also use ts for some simple type intelligence

// tsconfig.json
"compilerOptions": {
  ...
  ...
  "types": ["@wn90674/mock-server"]
  ...
  ...
},
// getTime.mock.ts
export const getTime = defineMock<{result: number}>({
  url: '/api/getTime',
  data: {
    result: new Date().getTime()
  }
})
step4: start server
// package.json
  "scripts": {
    "mock": "msv src/mock",
  },
# default port 3100
npm run mock -- --port=5000

tsx not support dynamic import .ts file(.mjs is ok),but we can achieve this by using nodemon

// package.json
"scripts": {
  "mock": "nodemon --watch src/mock -e ts --exec msv src/mock",
}

FAQs

Package last updated on 06 Jul 2022

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc