6

I am planning to do a little multiplayer javascript game with a node.js server (using socket.io) and would like to share some code (mostly classes) between the webclient and the server. So I found this:

How can I share code between Node.js and the browser?

However I would also like to use Typescript and was wondering how to set it up? What tsconfig.json settings are best suited for this? Do I have to use something like browserify or webpack?

1
  • What you mean is to share server and client side code? Commented Jun 30, 2016 at 22:32

1 Answer 1

3

Do I have to use something like browserify or webpack?

Yes. I use webpack.

What tsconfig.json settings are best suited for this

just use commonjs everywhere.

More

here is a project in typescript with both backend / frontend .... uses webpack ... and has a single tsconfig.json : https://github.com/alm-tools/alm

Sign up to request clarification or add additional context in comments.

1 Comment

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.