psd.js
psd.js copied to clipboard
how can i use it with cdnjs in brower?
<html>
<script src="https://cdnjs.cloudflare.com/ajax/libs/psd.js/3.4.0/psd.min.js"></script>
</html>
console.log(window.PSD) // => null
how can i use it with cdnjs in brower?
@otary: Try waiting for the page to load. For me this works:
<script src="https://cdnjs.cloudflare.com/ajax/libs/psd.js/3.4.0/psd.js"></script>
<script>
document.addEventListener('DOMContentLoaded', function () {
const PSD = require('psd');
// ...
});
</script>