Skip to content

Instantly share code, notes, and snippets.

@Kcko
Last active July 11, 2025 07:25
Show Gist options
  • Save Kcko/11fffabee622bde4af8621c262d1b1a6 to your computer and use it in GitHub Desktop.
Save Kcko/11fffabee622bde4af8621c262d1b1a6 to your computer and use it in GitHub Desktop.
// index.js
export * as MathUtils from "./math.js";
export * as StringUtils from "./string-utils.js";
// Usage:
// import { MathUtils, StringUtils } from './index.js';
// modules/index.js
export { default as Calculator } from "./calculator.js";
export { default as Logger } from "./logger.js";
export * from "./math.js";
export * from "./string-utils.js";
export { ApiClient as Client, HTTP_METHODS as Methods } from "./config.js";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment