All Projects → webpack-contrib → Json Loader

webpack-contrib / Json Loader

Licence: mit
json loader module for webpack - UNMAINTAINED

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Json Loader

Sass Vars Loader
Use Sass variables defined in Webpack config or in external Javascript or JSON files
Stars: ✭ 112 (-74.01%)
Mutual labels:  webpack-loader, json
Vue Mdc Adapter
DEPRECATED
Stars: ✭ 425 (-1.39%)
Mutual labels:  deprecated
Jsoniter Scala
Scala macros for compile-time generation of safe and ultra-fast JSON codecs
Stars: ✭ 410 (-4.87%)
Mutual labels:  json
Axe Cli
[Deprecated] A command-line interface for the aXe accessibility testing engine
Stars: ✭ 419 (-2.78%)
Mutual labels:  deprecated
Css Loader
CSS Loader
Stars: ✭ 4,067 (+843.62%)
Mutual labels:  webpack-loader
Pytablewriter
pytablewriter is a Python library to write a table in various formats: CSV / Elasticsearch / HTML / JavaScript / JSON / LaTeX / LDJSON / LTSV / Markdown / MediaWiki / NumPy / Excel / Pandas / Python / reStructuredText / SQLite / TOML / TSV.
Stars: ✭ 422 (-2.09%)
Mutual labels:  json
Easy localization
Easy and Fast internationalizing your Flutter Apps
Stars: ✭ 407 (-5.57%)
Mutual labels:  json
Jstream
Streaming JSON parser for Go
Stars: ✭ 427 (-0.93%)
Mutual labels:  json
Jtc
JSON processing utility
Stars: ✭ 425 (-1.39%)
Mutual labels:  json
Piranha
[DEPRECATED] This is the legacy version of Piranha CMS for .NET 4.5, MVC 5.2 & WebPages 3.2.
Stars: ✭ 418 (-3.02%)
Mutual labels:  deprecated
Data
This repository contains general data for Web technologies
Stars: ✭ 418 (-3.02%)
Mutual labels:  json
Devops Python Tools
80+ DevOps & Data CLI Tools - AWS, GCP, GCF Python Cloud Function, Log Anonymizer, Spark, Hadoop, HBase, Hive, Impala, Linux, Docker, Spark Data Converters & Validators (Avro/Parquet/JSON/CSV/INI/XML/YAML), Travis CI, AWS CloudFormation, Elasticsearch, Solr etc.
Stars: ✭ 406 (-5.8%)
Mutual labels:  json
Remarshal
Convert between CBOR, JSON, MessagePack, TOML, and YAML
Stars: ✭ 421 (-2.32%)
Mutual labels:  json
Jsonformat4flutter
受zzz40500/GsonFormat启发,将JSONObject格式的String解析成dart语言的实体类
Stars: ✭ 411 (-4.64%)
Mutual labels:  json
Struct2json
A fast convert library between the JSON and C structure. Implement structure serialization and deserialization for C. | C 结构体与 JSON 快速互转库,快速实现 C 结构体的序列化及反序列化
Stars: ✭ 424 (-1.62%)
Mutual labels:  json
Crossplane
Quick and reliable way to convert NGINX configurations into JSON and back.
Stars: ✭ 407 (-5.57%)
Mutual labels:  json
Comuni Json
🇮🇹 Database JSON comuni italiani (2020) con informazioni ISTAT + CAP
Stars: ✭ 416 (-3.48%)
Mutual labels:  json
Doctrine Json Odm
An object document mapper for Doctrine ORM using JSON types of modern RDBMS.
Stars: ✭ 420 (-2.55%)
Mutual labels:  json
Qsimpleupdater
Updater system for Qt applications
Stars: ✭ 429 (-0.46%)
Mutual labels:  json
Json Api Php
JSON-API (http://jsonapi.org) responses in PHP.
Stars: ✭ 426 (-1.16%)
Mutual labels:  json

npm node deps tests coverage chat

JSON Loader

Install

npm install --save-dev json-loader

⚠️ Since webpack >= v2.0.0, importing of JSON files will work by default. You might still want to use this if you use a custom file extension. See the v1.0.0 -> v2.0.0 Migration Guide for more information

Usage

Inline

const json = require('json-loader!./file.json');

Configuration (recommended)

const json = require('./file.json');

webpack.config.js

module.exports = {
  module: {
    loaders: [
      {
        test: /\.json$/,
        loader: 'json-loader'
      }
    ]
  }
}

Maintainer

Tobias Koppers
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].