{"id":26935,"library":"es6-module-transpiler-loader","title":"es6-module-transpiler-loader","description":"A webpack loader that transpiles ES6 modules to AMD, CommonJS, or other formats using the es6-module-transpiler. This package is version 0.1.0 and appears to be an early, unmaintained experiment. Unlike more modern tools like Babel or TypeScript, it relies on a transpiler that never gained widespread adoption. There is no README, no recent updates, and limited community support. It is functionally obsolete and should not be used in new projects.","status":"abandoned","version":"0.1.0","language":"javascript","source_language":"en","source_url":null,"tags":["javascript"],"install":[{"cmd":"npm install es6-module-transpiler-loader","lang":"bash","label":"npm"},{"cmd":"yarn add es6-module-transpiler-loader","lang":"bash","label":"yarn"},{"cmd":"pnpm add es6-module-transpiler-loader","lang":"bash","label":"pnpm"}],"dependencies":[],"imports":[{"note":"CommonJS require is unsupported; the package only provides an ES6 module default export.","wrong":"const TranspilerLoader = require('es6-module-transpiler-loader')","symbol":"default","correct":"import TranspilerLoader from 'es6-module-transpiler-loader'"},{"note":"Named exports not available; use .default property in CommonJS.","wrong":"const { TranspilerLoader } = require('es6-module-transpiler-loader')","symbol":"TranspilerLoader","correct":"const TranspilerLoader = require('es6-module-transpiler-loader').default"},{"note":"No TypeScript types shipped; this is hypothetical if types existed.","wrong":"import { LoaderDefinition } from 'es6-module-transpiler-loader'","symbol":"TypeScript type","correct":"import type { LoaderDefinition } from 'es6-module-transpiler-loader'"}],"quickstart":{"code":"// webpack.config.js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.js$/,\n        loader: 'es6-module-transpiler-loader',\n        options: {\n          format: 'cjs' // or 'amd', 'umd', 'yui'\n        }\n      }\n    ]\n  }\n}","lang":"javascript","description":"Configures webpack to transpile ES6 modules to CommonJS using the es6-module-transpiler-loader."},"warnings":[{"fix":"Replace with @babel/loader or ts-loader.","message":"The es6-module-transpiler project itself is deprecated; use Babel or TypeScript instead.","severity":"deprecated","affected_versions":">=0.0.0"},{"fix":"Avoid using this package; refer to the es6-module-transpiler docs if necessary.","message":"No README or documentation provided; usage is unclear and unsupported.","severity":"gotcha","affected_versions":">=0.0.0"},{"fix":"Use a modern loader like babel-loader for webpack 2+.","message":"Loader does not work with webpack 2+ due to breaking changes in loader API.","severity":"breaking","affected_versions":">=0.0.0"}],"env_vars":null,"last_verified":"2026-05-01T00:00:00.000Z","next_check":"2026-07-30T00:00:00.000Z","problems":[{"fix":"npm install es6-module-transpiler-loader --save-dev","cause":"Package not installed or not in node_modules","error":"Module not found: Error: Cannot resolve module 'es6-module-transpiler-loader'"},{"fix":"Use babel-loader instead or downgrade webpack to 1.x","cause":"Webpack 2+ expects a function; this loader uses old API","error":"Loader 'es6-module-transpiler-loader' is not a function"}],"ecosystem":"npm","meta_description":null,"install_score":null,"install_tag":null,"quickstart_score":null,"quickstart_tag":null}