diff --git a/components/Sidebar/index.jsx b/components/Sidebar/index.jsx index 9cc88df..721fb79 100644 --- a/components/Sidebar/index.jsx +++ b/components/Sidebar/index.jsx @@ -7,13 +7,12 @@ const categories = [ ['getting-started', 'Getting Started'], ['command-line', 'Command Line'], ['http', 'HTTP'], - ['file-system', 'File System'], + ['manipulating-files', 'Manipulating Files'], ['asynchronous-work', 'Asynchronous Work'], ['typescript', 'TypeScript'], - ['package-management', 'Package Management'], + ['modules', 'Modules'], ['diagnostics', 'Diagnostics'], - ['testing', 'Testing'], - ['security', 'Security'], + ['test-runner', 'Test Runner'], ]; /** @type {Map>} */ diff --git a/pages/package-management/an-introduction-to-the-npm-package-manager.md b/pages/getting-started/an-introduction-to-the-npm-package-manager.md similarity index 100% rename from pages/package-management/an-introduction-to-the-npm-package-manager.md rename to pages/getting-started/an-introduction-to-the-npm-package-manager.md diff --git a/pages/diagnostics/debugging.md b/pages/getting-started/debugging.md similarity index 100% rename from pages/diagnostics/debugging.md rename to pages/getting-started/debugging.md diff --git a/pages/http/fetch.md b/pages/getting-started/fetch.md similarity index 100% rename from pages/http/fetch.md rename to pages/getting-started/fetch.md diff --git a/pages/diagnostics/profiling.md b/pages/getting-started/profiling.md similarity index 100% rename from pages/diagnostics/profiling.md rename to pages/getting-started/profiling.md diff --git a/pages/security/security-best-practices.md b/pages/getting-started/security-best-practices.md similarity index 100% rename from pages/security/security-best-practices.md rename to pages/getting-started/security-best-practices.md diff --git a/pages/http/websocket.md b/pages/getting-started/websocket.md similarity index 100% rename from pages/http/websocket.md rename to pages/getting-started/websocket.md diff --git a/pages/file-system/nodejs-file-paths.md b/pages/manipulating-files/nodejs-file-paths.md similarity index 100% rename from pages/file-system/nodejs-file-paths.md rename to pages/manipulating-files/nodejs-file-paths.md diff --git a/pages/file-system/nodejs-file-stats.md b/pages/manipulating-files/nodejs-file-stats.md similarity index 100% rename from pages/file-system/nodejs-file-stats.md rename to pages/manipulating-files/nodejs-file-stats.md diff --git a/pages/file-system/reading-files-with-nodejs.md b/pages/manipulating-files/reading-files-with-nodejs.md similarity index 100% rename from pages/file-system/reading-files-with-nodejs.md rename to pages/manipulating-files/reading-files-with-nodejs.md diff --git a/pages/file-system/working-with-different-filesystems.md b/pages/manipulating-files/working-with-different-filesystems.md similarity index 100% rename from pages/file-system/working-with-different-filesystems.md rename to pages/manipulating-files/working-with-different-filesystems.md diff --git a/pages/file-system/working-with-file-descriptors-in-nodejs.md b/pages/manipulating-files/working-with-file-descriptors-in-nodejs.md similarity index 100% rename from pages/file-system/working-with-file-descriptors-in-nodejs.md rename to pages/manipulating-files/working-with-file-descriptors-in-nodejs.md diff --git a/pages/file-system/working-with-folders-in-nodejs.md b/pages/manipulating-files/working-with-folders-in-nodejs.md similarity index 100% rename from pages/file-system/working-with-folders-in-nodejs.md rename to pages/manipulating-files/working-with-folders-in-nodejs.md diff --git a/pages/file-system/writing-files-with-nodejs.md b/pages/manipulating-files/writing-files-with-nodejs.md similarity index 100% rename from pages/file-system/writing-files-with-nodejs.md rename to pages/manipulating-files/writing-files-with-nodejs.md diff --git a/pages/package-management/abi-stability.md b/pages/modules/abi-stability.md similarity index 100% rename from pages/package-management/abi-stability.md rename to pages/modules/abi-stability.md diff --git a/pages/asynchronous-work/backpressuring-in-streams.md b/pages/modules/backpressuring-in-streams.md similarity index 100% rename from pages/asynchronous-work/backpressuring-in-streams.md rename to pages/modules/backpressuring-in-streams.md diff --git a/pages/asynchronous-work/how-to-use-streams.md b/pages/modules/how-to-use-streams.md similarity index 100% rename from pages/asynchronous-work/how-to-use-streams.md rename to pages/modules/how-to-use-streams.md diff --git a/pages/package-management/publishing-a-package.md b/pages/modules/publishing-a-package.md similarity index 100% rename from pages/package-management/publishing-a-package.md rename to pages/modules/publishing-a-package.md diff --git a/pages/package-management/publishing-node-api-modules.md b/pages/modules/publishing-node-api-modules.md similarity index 100% rename from pages/package-management/publishing-node-api-modules.md rename to pages/modules/publishing-node-api-modules.md diff --git a/pages/testing/collecting-code-coverage.md b/pages/test-runner/collecting-code-coverage.md similarity index 100% rename from pages/testing/collecting-code-coverage.md rename to pages/test-runner/collecting-code-coverage.md diff --git a/pages/testing/introduction.md b/pages/test-runner/introduction.md similarity index 100% rename from pages/testing/introduction.md rename to pages/test-runner/introduction.md diff --git a/pages/testing/mocking.md b/pages/test-runner/mocking.md similarity index 100% rename from pages/testing/mocking.md rename to pages/test-runner/mocking.md diff --git a/pages/testing/using-test-runner.md b/pages/test-runner/using-test-runner.md similarity index 100% rename from pages/testing/using-test-runner.md rename to pages/test-runner/using-test-runner.md