{"id":22543266,"url":"https://github.com/sefinek/email-validator","last_synced_at":"2026-01-27T19:43:57.050Z","repository":{"id":213900279,"uuid":"735212570","full_name":"sefinek/email-validator","owner":"sefinek","description":"Lightweight npm module for email address validation.","archived":false,"fork":false,"pushed_at":"2024-11-01T19:16:23.000Z","size":805,"stargazers_count":2,"open_issues_count":3,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-01-27T08:12:30.276Z","etag":null,"topics":["email","email-address-validator","email-checker","email-validator","email-verifier","email-verify","npm-module","npm-package","validation","validator","validators"],"latest_commit_sha":null,"homepage":"https://sefinek.net/npm/email-validator/demo","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sefinek.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"sefinek24","patreon":"sefinek","ko_fi":"sefinek","custom":["https://www.paypal.me/sefinek24"]}},"created_at":"2023-12-24T04:28:51.000Z","updated_at":"2024-12-24T13:11:30.000Z","dependencies_parsed_at":"2023-12-31T03:43:50.949Z","dependency_job_id":"7496b692-3ce9-4d32-ad14-bc8a84c72b0e","html_url":"https://github.com/sefinek/email-validator","commit_stats":{"total_commits":46,"total_committers":2,"mean_commits":23.0,"dds":"0.021739130434782594","last_synced_commit":"f22267009ecf41a4bd0fcbd585185d730157b6e6"},"previous_names":["sefinek24/email-validator","sefinek/email-validator"],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sefinek%2Femail-validator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sefinek%2Femail-validator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sefinek%2Femail-validator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sefinek%2Femail-validator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sefinek","download_url":"https://codeload.github.com/sefinek/email-validator/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":236772478,"owners_count":19202281,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["email","email-address-validator","email-checker","email-validator","email-verifier","email-verify","npm-module","npm-package","validation","validator","validators"],"created_at":"2024-12-07T13:15:33.701Z","updated_at":"2025-10-17T04:31:09.479Z","avatar_url":"https://github.com/sefinek.png","language":"JavaScript","funding_links":["https://github.com/sponsors/sefinek24","https://patreon.com/sefinek","https://ko-fi.com/sefinek","https://www.paypal.me/sefinek24"],"categories":[],"sub_categories":[],"readme":"# 📨 Email Address Validator\nThis lightweight module facilitates precise email address validation, returning a `Boolean` value of `true` or `false`.\n\n\u003cdiv align=\"center\"\u003e\n    \u003ca href=\"https://www.npmjs.com/package/@sefinek/email-validator\"\u003e\n        \u003cimg src=\"https://img.shields.io/npm/dm/@sefinek/email-validator\" alt=\"npm downloads\"\u003e\n    \u003c/a\u003e\n    \u003ca href=\"https://github.com/sefinek/email-validator/issues\"\u003e\n        \u003cimg src=\"https://img.shields.io/github/issues/sefinek/email-validator\" alt=\"Issues\"\u003e\n    \u003c/a\u003e\n    \u003ca href=\"https://github.com/sefinek/email-validator/commits/main\"\u003e\n        \u003cimg src=\"https://img.shields.io/github/last-commit/sefinek/email-validator\" alt=\"Last commit\"\u003e\n    \u003c/a\u003e\n    \u003ca href=\"https://www.jsdelivr.com/package/npm/@sefinek/email-validator\"\u003e\n        \u003cimg src=\"https://data.jsdelivr.com/v1/package/npm/@sefinek/email-validator/badge?style=rounded\" alt=\"Stats\"\u003e\n    \u003c/a\u003e\n\u003c/div\u003e\n\n\n## 🟢 » Node.js\n### Installation via npm\n```bash\nnpm install @sefinek/email-validator\n```\n\n### Installation via yarn\n```bash\nyarn add @sefinek/email-validator\n```\n\n### Example\n```js\nconst emailValidator = require('@sefinek/email-validator');\n\nconst TEST_EMAIL = 'contact@sefinek.net';\nif (emailValidator(TEST_EMAIL)) {\n    console.log(`Email ${TEST_EMAIL} is valid.`);\n} else {\n    console.log(`Email ${TEST_EMAIL} is NOT valid!`);\n}\n```\n\n\n## 🌍 » Browser\n### jsdelivr.net\n```\nhttps://cdn.jsdelivr.net/npm/@sefinek/email-validator@2/dist/email-validator.min.js\n```\n\n### Example\n```html\n\u003c!DOCTYPE html\u003e\n\u003chtml lang=\"en\"\u003e\n\u003chead\u003e\n    \u003cmeta charset=\"utf-8\"\u003e\n    \u003ctitle\u003eemail-validator\u003c/title\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n    \u003ch1\u003eemail-validator\u003c/h1\u003e\n\n    \u003cscript src=\"https://cdn.jsdelivr.net/npm/@sefinek/email-validator@2/dist/email-validator.min.js\"\u003e\u003c/script\u003e\n    \u003cscript\u003e\n        const email = 'contact@sefinek.net';\n\n        if (emailValidator(email)) {\n            console.log(`✔️ Email ${email} is valid.`);\n        } else {\n            console.log(`❎ Email ${email} is NOT valid!`);\n        }\n    \u003c/script\u003e\n\u003c/body\u003e\n\u003c/html\u003e\n```\n\n### Demo\n\u003e https://sefinek.net/npm/email-validator/demo\n\n\n## ⭐ » Thank you\nIf you find this module helpful, please consider giving the [repository a star](https://github.com/sefinek/email-validator).\nFor any questions or issues, please create a new [Issue](https://github.com/sefinek/email-validator/issues/new).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsefinek%2Femail-validator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsefinek%2Femail-validator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsefinek%2Femail-validator/lists"}