Skip to content

πŸš€ LeetCode NeetCode Solution Finder - Adds a button to LeetCode problems linking to NeetCode solutions.

License

Notifications You must be signed in to change notification settings

daily-coding-problem/neetleet

Β 
Β 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

1 Commit
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

NeetLeet πŸš€

Docker Linux JavaScript pnpm Puppeteer Jest LeetCode

NeetLeet is a Chrome extension that integrates NeetCode solutions into LeetCode problem pages. It enhances your coding interview preparation by providing quick access to high-quality solutions directly from the problem page.

Features

  • NeetCode Integration: Adds a "πŸš€ View NeetCode Solution" button to LeetCode problem pages if a corresponding NeetCode solution exists.
  • Automatic Slug Mapping: Automatically maps the LeetCode problem slug to the NeetCode solution URL.
  • Optimized for Chrome: Seamless integration as a Chrome extension.
  • Efficient Performance: Ensures the button is injected only if a valid solution exists.

Installation

1. Clone the Repository

git clone https://github.com/daily-coding-problem/neetleet.git
cd neetleet

2. Install Dependencies

Use pnpm to install dependencies:

pnpm install

3. Build the Extension

Ensure the source files are properly built for deployment:

pnpm build

4. Load the Extension

  1. Open Chrome and navigate to chrome://extensions/.
  2. Enable Developer Mode.
  3. Click Load unpacked and select the dist/ folder from the repository.

Development

Run Unit Tests

To execute the unit tests:

pnpm run test:unit

Run E2E Tests

To run end-to-end tests using Puppeteer in a Dockerized environment:

docker-compose up

Run Linting

Ensure code quality with ESLint:

pnpm run lint

File Structure

neetleet/
β”œβ”€β”€ src/                     # Source code for the extension
β”‚   β”œβ”€β”€ content.js           # Main content script
β”‚   β”œβ”€β”€ background.js        # Background script for Chrome runtime
β”‚   β”œβ”€β”€ manifest.json        # Chrome extension manifest
β”‚   └── ...other files
β”œβ”€β”€ tests/                   # Test files
β”‚   β”œβ”€β”€ unit/                # Unit tests
β”‚   β”œβ”€β”€ e2e/                 # End-to-end tests
β”‚   └── mocks/               # Mock files for testing
β”œβ”€β”€ Dockerfile               # Dockerfile for running Puppeteer tests
β”œβ”€β”€ docker-compose.yml       # Docker Compose configuration
β”œβ”€β”€ package.json             # Project dependencies and scripts
β”œβ”€β”€ README.md                # Project documentation
└── ...other files

How It Works

  1. Content Script:

    • Extracts the problem slug from the current LeetCode URL.
    • Sends a message to the background script to verify if a NeetCode solution exists.
  2. Background Script:

    • Validates the problem slug by sending a request to https://neetcode.io/solutions/<slug>.
  3. Button Injection:

    • If a solution exists, a "πŸš€ View NeetCode Solution" button is injected into the DOM, linking to the NeetCode solution.

Contributing

We welcome contributions! Follow these steps to contribute:

  1. Fork the repository.
  2. Create a new branch: git checkout -b feature-name.
  3. Commit your changes: git commit -m 'Add a new feature'.
  4. Push to the branch: git push origin feature-name.
  5. Open a Pull Request.

License

This project is licensed under the MIT License.

Acknowledgments

  • NeetCode for his excellent solutions.
  • LeetCode for hosting challenging coding problems.
  • Puppeteer for enabling automated browser testing.

Contact

For any questions or suggestions, feel free to open an issue or reach out at nicholas.adamou@outlook.com.

About

πŸš€ LeetCode NeetCode Solution Finder - Adds a button to LeetCode problems linking to NeetCode solutions.

Resources

License

Stars

Watchers

Forks

Languages

  • JavaScript 95.4%
  • Dockerfile 4.6%