0.1.2 • Published 4 years ago

json-configurator-store v0.1.2

Weekly downloads
2
License
ISC
Repository
github
Last release
4 years ago

Json Configurator Store

Table of Contents

ProjectManagement

createProject

Creates a new Folder in File System using process.env.PROJECTS_FOLDER and given projectName. Creates sub-folders for configurations and JSON Schemas

Parameters

Returns boolean return true if a new project was created, false if it already exists.

getAllProjects

Retrieves a list of all existing projects in the File System

Returns Array<string>

getProjectConfigurations

Retrieves the configurations filenames inside the directory of projectName

Parameters

  • projectName
  • Throws Error Project does not exist

Returns Array<string>

ConfigurationManagement

getConfiguration

Retrieves the Configuration File with configName for given projectName

Parameters

  • projectName {string} - The project that contains the requested configuration file
  • configName {string} - The requested configuration file
  • suffix {string=} - a suffix to append to the filename configName when retrieving it.

Returns object

createConfiguration

Creates a new Configuration File named configName with configData inside of an existing project with given projectName

Parameters

  • projectName string The project that contains the requested configuration file
  • configName string The requested configuration file
  • configData string The configuration you wish to store
  • suffix string? a suffix to append to the filename

Returns Promise<boolean>

SchemaManagement

getSchema

Retrieves the Schema File with schemaName for given projectName

Parameters

  • projectName {string} - The project that contains the requested schema file
  • schemaName {string} - The requested schema file
  • suffix {string=} - a suffix to append to the filename schemaName when retrieving it.

Returns object

createSchema

Creates a new Schema File named schemaName with schemaData inside of an existing project with given projectName

Parameters

  • projectName string The project that contains the requested schema file
  • schemaName string The requested schema file
  • schemaData string The schema you wish to store
  • suffix string? a suffix to append to the filename

Returns Promise<boolean>

0.1.2

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago