Skip to content

ETHANTALJAFFE/json-configurator-store

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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>

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published