0.1.2 • Published 8 years ago

angular-resource-explorer v0.1.2

Weekly downloads
12
License
-
Repository
github
Last release
8 years ago

WARNING: This document is still in progress, the project is still just a concept and exploration at this point !


Angular Resource Explorer (ARM) (INCOMPLETE)

Automated fully-functional grid and forms generation from any ARM enabled REST endpoint

ARM Enabling the REST endpoint

1) Adding a "specification" document section to the endpoint

Sample
{
  idField: 'cmdUID',
  properties: [
    {name: 'description', type: 'string', required: true},
    {name: 'alarmSeverity', type: 'string', required: true},
    {name: 'numberDemo', type: 'number', required: true, min=[number], max=[number] }
  ]
}

Supported Data Types

  • string
  • float
  • integer
  • boolean
  • enum
  • relation (belongsTo)