Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Scrambles email addresses and phone numbers with ROT-18 to hide them from bots

License

NotificationsYou must be signed in to change notification settings

thibaudcolas/email-scramble

Repository files navigation

Encode/decode email addresses and phone numbers with ROT-18 to hide them from bots. Can be used server-side with Node.js or in a browser.

If you'd like to know more about obfuscation techniques and their success ratio,here is a great blog post on the subject.

Getting Started

email-scramble uses a simpleROT transformation. The default rotation is ROT-18: letters will be rotated by 13 and numbers by 5.

varencodedEmail=emailScramble.encode("mail@example.com");vardecodedMail=emailScramble.decode(encodedMail);// You can also pick any other flavor of ROT:functionmyROT(str){// Here letters are obfuscated with ROT-13 and numbers are kept clear.returnemailScramble.rot(13,0,str);}// Functional-programming partial application style:varmyRot=emailScramble.rot.bind(emailScramble,13,0);

Here is a real-world example:

// <a href="znvygb:znvy@rknzcyr.pbz" data-email-scramble>Send me an email!</a>varlinks=document.querySelectorAll("[data-email-scramble]");links.forEach(functiondecodeLink(link){link.href=emailScramble.decode(link.href);});

Download & import

npm install --save email-scramble
// ES6+importemailScramblefrom"email-scramble";// The CommonJS way.varemailScramble=require("email-scramble");

About

Scrambles email addresses and phone numbers with ROT-18 to hide them from bots

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Contributors2

  •  
  •  

[8]ページ先頭

©2009-2025 Movatter.jp