Giter Club home page Giter Club logo

Comments (6)

namel avatar namel commented on August 24, 2024

Hi Alan, thanks for the issue, I'm a big fan of your work. :)

Incheon is not meant to be packaged independently. It is a library which ultimately gets packaged into
a host game project. There are examples for both browserify and webpack packaging.
Take a look at the boilerplate game repository: https://github.com/namel/incheongame
Or better yet, you're invited to walk through one of the tutorials in the documentation:
http://docs.incheon.gg/develop/index.html

from lance.

GGAlanSmithee avatar GGAlanSmithee commented on August 24, 2024

@namel ;)

I am not so much talking about packaging as transpiling.

The problem is that using babel, it expects code to be either es5 compatable, or transpiled (which is basically the same thing). Since incheon exports es6 code (class), and is not transpiled by default when the user requires it (babel ignores node_modules) babel cannot handle when you do something like:

const GameEngine = require('incheon').GameEngine
class MyGameEngine extends GameEngine { }

This won't compile in a standard babel/webpack setup. It is possible to have babel transpile this package by ignoring it, but this ultimatley puts the burden on the user, which IMO is less than ideal. I would rather have you state that you do not support es5 if that is the case.

I've put together a reproduction repo to better illustrate the problem: https://github.com/GGAlanSmithee/incheon-babel-test

from lance.

namel avatar namel commented on August 24, 2024

What about the option of configuring webpack with babel-loader? We used this to
get babel/webpack to work together, and extended the GameEngine class as you described above.

@OpherV got this to work by specifying the webpack babel-loader in webpack.config.js

Take a look at our spaaace demo repository, and specifically at the webpack.config.js file:

https://github.com/OpherV/spaaace

from lance.

GGAlanSmithee avatar GGAlanSmithee commented on August 24, 2024

@namel yeah, looks like you are manually including incheon for transpilation in that project https://github.com/OpherV/spaaace/blob/master/webpack.config.js#L25

This is a real option, and sooner or later I guess we need to move toward es6, but I think you should make this clear in the documentation, want a PR for the docs?

from lance.

namel avatar namel commented on August 24, 2024

would be great

from lance.

GGAlanSmithee avatar GGAlanSmithee commented on August 24, 2024

@namel #42 (what a magic number) let me know if want anything to be changed.

from lance.

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.