README
Core
My template for back-end style project, consists of two parts: this template and MS SQL base. This is a template for internal features, do not use it. Features:
- MS SQL 1.1. direct access 1.2. actions 1.3. settings with hot reload 1.4. write 'i am life' info (including memory use) 1.5. trusted app list
- Setting in ini file
- Panic
Kind: global class
- Core
- .app_name :
string
- .app_version :
string
- .app_similar :
number
- .app_need_exit :
boolean
- .ini_setting :
lib_setting
- .sql :
lib_sql
- .init(app_filename, app_version, callback)
- .panic(text)
- .sql_setting_get(setting_rid) ⇒
string
- .trusted_app_check(access_name, access_key) ⇒
boolean
- .app_name :
string
core.app_name : Kind: instance property of Core
string
core.app_version : Kind: instance property of Core
number
core.app_similar : Kind: instance property of Core
boolean
core.app_need_exit : Kind: instance property of Core
lib_setting
core.ini_setting : Kind: instance property of Core
lib_sql
core.sql : Kind: instance property of Core
core.init(app_filename, app_version, callback)
Kind: instance method of Core
Param | Type |
---|---|
app_filename | string |
app_version | string |
callback | function |
core.panic(text)
print panic text and halt app
Kind: instance method of Core
Param | Type |
---|---|
text | string |
string
core.sql_setting_get(setting_rid) ⇒ get one setting value by setting code
Kind: instance method of Core
Param | Type |
---|---|
setting_rid | string |
boolean
core.trusted_app_check(access_name, access_key) ⇒ check trusted app by name and key
Kind: instance method of Core
Param | Type |
---|---|
access_name | string |
access_key | string |