- Complete React app with 7 developer tools - JSON Tool with visual structured editor - Serialize Tool with visual structured editor - URL, Base64, CSV/JSON, Beautifier, Diff tools - Responsive navigation with dropdown menu - Dark/light mode toggle - Mobile-responsive design with sticky header - All tools working with copy/paste functionality
20 lines
703 B
JavaScript
20 lines
703 B
JavaScript
const getAdditionalEntries = require('./getAdditionalEntries');
|
|
const getIntegrationEntry = require('./getIntegrationEntry');
|
|
const getRefreshGlobal = require('./getRefreshGlobal');
|
|
const getSocketIntegration = require('./getSocketIntegration');
|
|
const injectRefreshEntry = require('./injectRefreshEntry');
|
|
const injectRefreshLoader = require('./injectRefreshLoader');
|
|
const makeRefreshRuntimeModule = require('./makeRefreshRuntimeModule');
|
|
const normalizeOptions = require('./normalizeOptions');
|
|
|
|
module.exports = {
|
|
getAdditionalEntries,
|
|
getIntegrationEntry,
|
|
getRefreshGlobal,
|
|
getSocketIntegration,
|
|
injectRefreshEntry,
|
|
injectRefreshLoader,
|
|
makeRefreshRuntimeModule,
|
|
normalizeOptions,
|
|
};
|