# node-properties **Repository Path**: mirrors_killme2008/node-properties ## Basic Information - **Project Name**: node-properties - **Description**: A node.js module to read properties config file. - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-09 - **Last Updated**: 2026-02-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ##Purpose node-properties is a node.js module to read properties config file.It will read properties and cast it to json. ##Tutorial var prop=require('node_properties'); prop.read("./test.properties",function(err,config){ if(err) throw err; console.log(config['option']); }); ##API read(path,callback,[encoding]); callback function: function(err,data){...}