GithubHelp home page GithubHelp logo

Not working in browser about fontkit HOT 6 CLOSED

foliojs avatar foliojs commented on May 28, 2024
Not working in browser

from fontkit.

Comments (6)

samanthamjohn avatar samanthamjohn commented on May 28, 2024

brotli is looking for process.argv[1], which won't be defined in the browser. As a work around, if you're using browserify:

if (global.process.argv.length < 2) {
    global.process.argv.push('');
}

from fontkit.

defue avatar defue commented on May 28, 2024

I can't make it work in browser either. Compiled it with browserify, fixed the errors in the compiled file. But after the compiled js file is loaded in browser (without errors) I still can't access neither fontkit or require function thus the example from Readme.md doesn't work. Could someone please point me out how to correctly compile and use fontkit in browsers?

from fontkit.

defue avatar defue commented on May 28, 2024

I got it to work . I created a file compile.js with the below content.
fontkit = require('fontkit');
And compiled it using browserify
browserify compile.js -o fontkit.js
Then added fontkit.js in script tag to browser and then I was able to use fontkit object in my scripts.

from fontkit.

defue avatar defue commented on May 28, 2024

The result fonkit.js is 1.1 MB or 840KB minified. Does anyone know how to reduce the size?

from fontkit.

devongovett avatar devongovett commented on May 28, 2024

The huge part is WOFF2 support (Emscripten compile). You can make a custom build using only the font formats you need to support.

var fontkit = require('fontkit/base');
fontkit.registerFormat(require('fontkit/src/TTFFont'));

You can see all the formats supported in the default configuration.

from fontkit.

Pomax avatar Pomax commented on May 28, 2024

Remember that the example in the readme is an offline/server-side node example. If you're bundling, make sure to use the correct syntax: bundlers don't magically create "for the web" bundles, you need to tell them what to do. In the case of browserify, you need to use the --standalone flag, and you probably need to tell it to shim the global nodejs process variable. If you're using webpack, you need to tell it that it's output should be "for the web with a var export". If you're using any other bundler, the same process applies: make sure you're using the syntax necessary to turn "not for the browser" code into "for the browser" code.

from fontkit.

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.