Git Product home page Git Product logo

Comments (8)

KyleAMathews avatar KyleAMathews commented on May 24, 2024

How do you add React components to your apps? Just download and them add them as script tags?

Also another way to try this out is to copy the generated css the playground site outputs

http://kyleamathews.github.io/typography.js/#/configuration

from typography.js.

KyleAMathews avatar KyleAMathews commented on May 24, 2024

(you can use the default Lato config or some that I've been collecting @ #10)

from typography.js.

jocubeit avatar jocubeit commented on May 24, 2024

Thanks, I appreciate your fast response.

I have a custom media delivery service, but essentially yes I serve the react component via a script tag, they are bundled into a single cached js. I don't use coffeescript at all and would prefer not to have to transpile from cjsx to jsx to js. I can manually convert your cjsx source to js myself but wanted to check if there is a way to get npm/node.js to do it, or even whether you were planning on providing a dist version.

I've just noticed you have a few other really nice components that are all cjsx also.

from typography.js.

KyleAMathews avatar KyleAMathews commented on May 24, 2024

How do you do the bundling?

from typography.js.

jocubeit avatar jocubeit commented on May 24, 2024

Component source is stored in a database, and a server-side service minifies and concatenates scripts into a single media resource. Everytime a script is updated it is transpiled from JSX to JS automatically and an etag generated for the cache. Dependencies are handled by the same system. The scripts are all editable from the browser and are transpiled server-side by node.js. React components are rendered server-side to HTML and then reactivated by the browser client-side (isomorphic setup). Node.js does the JSX->JS and component render, but I'm reluctant to add node modules as dependencies (using require) as it makes it very difficult to control the entire pipeline. For other components I'm serving that have dependencies, I add the scripts to the system and a dependency manager handles the load order etc. The system works very well, is extremely fast and only requires a single outbound call to a cached script. Node.js does not provide any forward facing activity and simply acts as a pipeline to transpile from JSX and render components for the intial view on the server-side. Similar to the react-rails gem, but I don't use sprockets, store physical files or use coffeescript.

from typography.js.

jocubeit avatar jocubeit commented on May 24, 2024

I just found that Node will create a dist folder with JS and will do the same for each dependency also.

from typography.js.

KyleAMathews avatar KyleAMathews commented on May 24, 2024

Huh, cool setup :)

Yeah, if you run make build it'll compile all the files to ES5 JS. Can your system handle commonjs? If so, you should be set at that point. I distribute the compiled version through NPM but haven't here as I hate checking it compiled code.

from typography.js.

KyleAMathews avatar KyleAMathews commented on May 24, 2024

Code in ES2015 now and you can find a compiled version at https://npmcdn.com/[email protected]/dist/index.js

from typography.js.

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.