Coder Social home page Coder Social logo

Organic v1.0.0

A concept & abstract implementation inspired by Organic Computing usable for evolving software development having the following properties:

  • Self-configuration
  • Self-optimization
  • Self-protection
  • Self-reflection

The package represents abstract form of the implementation bundled with concept documentation. Further modules/libraries/packages inheriting organic core classes provide actual implementation and the ability to extend, improve and adapt furthermore the concept and its practical results.

node-organic(or just organic) is based on the nature's patterns for structural organization, control flow & etc. Its base abstract ground is found to be the usable for natural engineering of complex systems.

Organic software development thereafter mimics nature's pattern for living cells representing their organization and structure within software applications.

Main primitives of the conceptual implementation are listed bellow in this document. Note that the terminology is intentionally chosen because every primitive comes with nature's fundamental properties/abilities/features proven to be naturally scalable/extendable

Chemical is raw data structure.

Every chemical has a type and in its nature is a plain object filled with properties (primitive values and/or references to other objects).

One chemical has this generalized structure

{
  type: String,
  // ... other custom properties
}

DNA is configuration.

It is the collected internal knowledge of the entire cell application - its relations, abilities, build phases, functionalities and modes. DNA information can be acquired from various sources and can be transmitted across various mediums if needed because it is a Chemical (raw data structure)

var dnaStructure = {
  "OrganelleName": {
    "source": "path/to/organelle_implementation"
  },
  "branchName": {
    "OrganelleName2": "path/to/implementation"
  }
}

var dna = new DNA(dnaStructure)
console.log(dna.OrganelleName.source) // "path/to/organelle_implementation"

Plasma is EventBus/EventDispatcher/PubSub pattern.

It is the fluid/environment which contains different kinds and copies of Organelles and/or Chemicals. The plasma also has main purpose in transmitting Chemicals between Organelles and within the Cell itself.

var plasma = new Plasma()
plasma.on(chemicalPattern, chemicalReactionFn)
plasma.emit(chemical)

Implementations:

Organelle is Controller/Command/Strategy pattern.

These are the building blocks of organic application. Organelles are simple class implementations having the following form:

var Organelle = function(plasma, dna) {
  this.plasma = plasma
  plasma.on(dna.reactOn, self.reactionToChemical)
}

Organelle.prototype.reactionToChemical = function(c) {
  // -- reaction logic
}

Nucles is DependencyInjector/Factory pattern.

Nucleus is an Organelle. It however has reactions vital for a 'living' Cells - ability to process DNA and execute reactions involved in constructing Organelles.

var nucleus = new Nucleus(plasma, dna)

// add ability to construct organelles on demand via "build" typed chemical.
plasma.on({type: "build"}, function(c){ nucleus.build(c) })

// build some organelles from dna
plasma.emit({type: "build", branch: dna.organelles})

Implementations:

Cell is Application.

It is usually a single constructor logic which brings up Plasma and Nucleus. The Cell also can provide support to "build" organelles using build chemicals.

// dna/organelles.json
{
  "plasma": {
    "organelle": {
      "source": "path/relative/to/cwd"
    }
  }
}

// cell.js
var Cell = function Cell(dna){
  this.plasma = new Plasma()
  var nucleus = new Nucleus(this.plasma, dna)
  this.plasma.on("build", nucleus.build, nucleus)
}

// main.js
var loadDNA = require('organic-dna-loader')
loadDNA(function(err, dna){

  // instantiate
  var instance = new Cell(dna)

  // trigger building
  instance.plasma.emit({type: "build", branch: "organelles.plasma"})
})

Cells can be in different kinds - command line, web services, desktop apps. Cells themselfs can form up and organize into a Systems. Different kinds of systems can build up even more complex structures interconnecting with each other like Organisms...

Related implementations:


Note that the proposed concept and its respective implementations doesn't simulate the actual nature order and processes. The concept follows closely nature's patterns where applicable to software development discipline.

References

Links

Legacy links

node-organic's Projects

organic-dna-fold icon organic-dna-fold

DNA utility function folding DNA structure with support for array manupulations and node overriding

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.