# properties-loader **Repository Path**: mirrors_jsantell/properties-loader ## Basic Information - **Project Name**: properties-loader - **Description**: Loader for .properties files for Webpack - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-25 - **Last Updated**: 2026-03-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # properties-loader Loader for .properties files for Webpack [![Build Status](http://img.shields.io/npm/v/properties-loader.svg?style=flat-square)](https://www.npmjs.org/package/properties-loader) ## Installation `$ npm install properties-loader` ## Usage The returned module of a properties-loader file is just a simple key value mapping via the [properties](https://www.npmjs.com/package/properties) module. ```.properties # l10n.properties greeting.hello=Hello! ``` ```js var L10N = require("properties-loader!./l10n.properties"); console.log(L10N.greeting.hello); // "Hello!" ``` ## Testing TODO ## License MIT License, Copyright (c) 2015 Jordan Santell