# babel-plugin-hello-world **Repository Path**: mirrors_Semigradsky/babel-plugin-hello-world ## Basic Information - **Project Name**: babel-plugin-hello-world - **Description**: Extended plugin sample for Babel - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-25 - **Last Updated**: 2026-03-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # babel-plugin-hello-world Extended plugin sample for Babel. ## Installation ```sh $ npm install babel-plugin-hello-world ``` ## Usage ### Via `.babelrc` (Recommended) **.babelrc** ```json { "plugins": ["hello-world"] } ``` ### Via CLI ```sh $ babel --plugins hello-world script.js ``` ### Via Node API ```javascript require('babel').transform('code', { plugins: ['hello-world'] }); ```