Git Product home page Git Product logo

Comments (4)

ixti avatar ixti commented on September 13, 2024

In fact we use node-browserify to build a browserified version internally. Here's what we are doing (from Makefile):

browserify:
    if test ! `which browserify` ; then npm install browserify ; fi
    cp -r support/browserify/ ${TMP_DIR}
    browserify index.js -o ${TMP_DIR}/50_js-yaml.js
    cat ${TMP_DIR}/* > js-yaml.js
    rm -rf ${TMP_DIR}
    cp js-yaml.js demo/js/

In other words, we browserify js-yaml with node-browserify and then prepend and append to the result some portions of JavaScript that make us possible to add some browser-specific hacks and enclose everything to provide only one variable into global scope - jsyaml.

Please, explain which error you get exactly?

from js-yaml.

 avatar commented on September 13, 2024

I installed js-yaml locally and I'm trying to require() it with browserify:

jsyaml = require "js-yaml"
console.log jsyaml.load "name:Johnny Luu"

It says:

Uncaught ReferenceError: jsyaml is not defined

So at the moment I'm better of to just include the "js-yaml.min" file.

Would be simpler to use the npm package in the browser since you can upgrade it (through package.json) once both for server and browser.

from js-yaml.

ixti avatar ixti commented on September 13, 2024

Hm. That's strange. If somebody will point why that might happen - we'll be glad to fix it. And will appreciate patches. But due to limited sources and time we can't handle this issue in the closest future. But the idea is really awesome!

from js-yaml.

 avatar commented on September 13, 2024

Just tried it out again it actually worked!

I just forgot to require() it in another place of my app.

However, it takes browserify 10-15 seconds to concatenate all js-yaml files. But perhaps that is something browserify should get better at.

I'm glad that it worked. No need to keep the minified browser file up to date anymore! :)

Other people have this problem as well: browserify/browserify#90

from js-yaml.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.