Socket
Socket
Sign inDemoInstall

mimic-js

Package Overview
Dependencies
25
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.1.11 to 1.1.12

5

package.json
{
"name": "mimic-js",
"version": "1.1.11",
"version": "1.1.12",
"description": "Module-Mediator-Controller architecture and framework for JavaScript back-end applications",

@@ -13,2 +13,3 @@ "main": "index.js",

},
"repository": "JumpTheShark/JS_MiMiC_Framework",
"keywords": [

@@ -20,3 +21,3 @@ "mimic",

],
"homepage": "https://github.com/JumpTheShark/JS_MiMiC_Architecture#readme",
"homepage": "https://github.com/JumpTheShark/JS_MiMiC_Framework#readme",
"author": "Evgeny Savelyev",

@@ -23,0 +24,0 @@ "license": "Apache-2.0",

29

README.md

@@ -1,2 +0,2 @@

# JS MiMiC Architecture
# JS MiMiC Architecture & Framework

@@ -9,2 +9,29 @@ <img src="https://s29.postimg.org/joz32yqmf/dungeon_and_dragons_mimic.jpg" width="330" height="268">

### Fast start
##### Console
```bash
npm install mimic-js -g
cd path/to/your/new/project
npm init
mimic init
mimic --help
```
##### Node.js
```javascript
const controller = require("mimic").ControlUnit;
controller.bindHeadModule("greeting", new function *() {
yield;
console.log("Hello, world!!");
});
controller.make("greeting", {});
```
### How does it work on paper?

@@ -11,0 +38,0 @@

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc