أداة مجانية على الإنترنت لـ Javascript Formatter ، Beautifier

Input data
bfotool loadding
Output data
bfotool loadding

عارض جافا سكريبت ، تجميل ، منسق ، محرر

أدخل جافا سكريبت (JS) الفوضوي أو المصغر أو المبهم في الحقل أعلاه لتنظيفه وجعله جميلًا. يحتوي المحرر أعلاه أيضًا على أرقام أسطر مفيدة وإبراز بناء الجملة. هناك العديد من الخيارات لتخصيص المجمل حسب أذواقك الشخصية.

متى تستخدم Javascript Viewer، Beautifier and Formatter، Editor

غالبًا عند كتابة Javascript (JS) ، قد تصبح المسافة البادئة والتباعد والتنسيقات الأخرى غير منظمة بعض الشيء. من الشائع أيضًا أن يعمل العديد من المطورين في مشروع واحد لديهم تقنيات تنسيق مختلفة. هذه الأداة مفيدة لجعل تنسيق الملف متسقًا. من الشائع أيضًا أن يتم تصغير جافا سكريبت (JS) أو تشويشها. يمكنك استخدام هذه الأداة لجعل هذا الرمز يبدو جميلًا وقابل للقراءة بحيث يسهل تحريره.

مثال لمجمل جافا سكريبت

جافا سكريبت مصغر:

var a=document.createElement('a');mimeType=mimeType||'application/octet-stream';if(navigator.msSaveBlob){navigator.msSaveBlob(new Blob([content],{type:mimeType}),fileName);}else if(URL&&'download'in a){a.href=URL.createObjectURL(new Blob([content],{type:mimeType}));a.setAttribute('download',fileName);document.body.appendChild(a);a.click();document.body.removeChild(a);}else{location.href='data:application/octet-stream,'+encodeURIComponent(content);}

يصبح هذا جمالا:

var a = document.createElement('a');
 mimeType = mimeType || 'application/octet-stream';
 if (navigator.msSaveBlob) {
     navigator.msSaveBlob(new Blob([content], {
         type: mimeType
     }), fileName);
 } else if (URL && 'download' in a) {
     a.href = URL.createObjectURL(new Blob([content], {
         type: mimeType
     }));
     a.setAttribute('download', fileName);
     document.body.appendChild(a);
     a.click();
     document.body.removeChild(a);
 } else {
     location.href = 'data:application/octet-stream,' + encodeURIComponent(content);
 }