This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

@camoflage/server

0.0.1 • Public • Published

camouflage.png

Camouflage

HTTP/gRPC Mocking tool





Complete Documentation

What is Camouflage?

Camouflage is a service virtualization tool inspired by namshi/mockserver. As the original description says, the mocking/service virtualization works on a file based structure where you simply organize your mocked HTTP responses in a bunch of mock files and it will serve them like they were coming from a real API; in this way you can write your frontends without caring too much whether your backend is really ready or not.

Features

  • Mocking support for HTTP, HTTPS, HTTP2 and gRPC. (websockets mocking support development ongoing)
  • Dynamic/realistic responses without having to write any code.
  • Conditional responses based on request parameters.
  • Delay Simulation.
  • Inbuilt monitoring.
  • Inbuilt backup and restore mechanism.
  • Quick start with camouflage init and camouflage restore modules.

Getting Started

  1. Camouflage is an NPM package, therefore to install Camouflage, you'd need to install NodeJS (>v14) first, if you haven't already done so.
  2. Install Camouflage: npm install -g @camoflage/server
  3. Run camouflage --version to validate the installation was successful.
  4. Create an empty directory anywhere in your machine and navigate to it in your terminal.
  5. Execute command camouflage init. This creates a basic skeleton of the folders you'd need in order to get started. You can modify these folders as per your requirements.
  6. Start the Camouflage server by initializing it with a config.yml file: camouflage --config config.yml

Configuration Options / Sample Config yml File

loglevel: info
cpus: 1
monitoring:
  port: 5555
ssl:
  cert: "./certs/server.cert"
  key: "./certs/server.key"
protocols:
  http:
    mocks_dir: "./mocks"
    port: 8080
  https:
    enable: false
    port: 8443
  http2:
    enable: false
    port: 8081
  grpc:
    enable: false
    host: localhost
    port: 4312
    mocks_dir: "./grpc/mocks"
    protos_dir: "./grpc/protos"
backup:
  enable: true
  cron: "0 * * * *" # Hourly Backup

Create your first mock

Camouflage follows the same convention as mockserver to create mocks. For example,

  1. You start by creating a directory ${MOCKS_DIR}/hello-world
  2. Create a file GET.mock under ${MOCKS_DIR}/hello-world
  3. Paste following content:
HTTP/1.1 200 OK
X-Custom-Header: Custom-Value
Content-Type: application/json

{
    "greeting": "Hey! It works!"
}

Navigate to http://localhost:8080/hello-world

Building from source

If you'd like to get the latest version of Camouflage, you can build it from the source.

Building from source might have it's own drawbacks, most important of all is that source is always in beta. There might be some bugs which are still being worked upon. You might want to proceed with that aspect in mind.
  1. Clone the repository: git clone https://github.com/fauxauldrich/camouflage.git
  2. Install dependencies: npm install
  3. Build the project: npm build
  4. At this point you can run Camouflage using: node bin/camouflage.js --config ./config.yml
  5. However if you'd like to install Camouflage globally, execute: npm pack
  6. Install by running command: npm install -g camouflage-server-${version}.tgz or npm install -g camouflage-server-${version}.zip

Contributing

Read the contributing guide

License

MIT License

Copyright (c) 2021 fauxauldrich

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Dependents (0)

Package Sidebar

Install

npm i @camoflage/server

Weekly Downloads

0

Version

0.0.1

License

MIT

Unpacked Size

7.5 MB

Total Files

113

Last publish

Collaborators

  • camoflage