Is it possible to use C-written .so library file in an Angular 2+ project?










0














I'd like to create an Angular project but I need to use a custom C library which is historically used in my team.
I googled a lot about this but I did not find an answer to my doubt.
Is this a thing or do I need to re-implement the library in JS / switch to a different framework?










share|improve this question

















  • 1




    As far as I'm aware you can't run C in the browser, so you would have to rewrite the library in JS or take a look at WebAssembly
    – dotconnor
    Nov 12 at 13:23







  • 1




    You could potentially look at using webassembly. I don't have much experience with it, but it should work with Angular malcoded.com/posts/web-assembly-angular
    – user184994
    Nov 12 at 13:24






  • 1




    You can keep your C-written code on the web server and make some HTTP requests into it with many different ways. Running the code inside web browser will be very tricky and better rewrite into JS. And finally if your Angular 2+ project is inside Electron or a similar system, then you can run C code, but this will be very similar to keeping it on web server
    – Evgeniy
    Nov 12 at 13:29










  • @Evgeniy that's a solution I would have considered if I could not find a way to "port" the native code automatically.
    – afe
    Nov 13 at 11:27










  • @dotconnor you're totally right, I hoped it was possible to "run" C code in a browser. The suggestion by you and user184994 to use WebAssembly seems to fit my needs; I did not know about this technology but it sound great! Thanks for pointing me out to the right direction.
    – afe
    Nov 13 at 11:28















0














I'd like to create an Angular project but I need to use a custom C library which is historically used in my team.
I googled a lot about this but I did not find an answer to my doubt.
Is this a thing or do I need to re-implement the library in JS / switch to a different framework?










share|improve this question

















  • 1




    As far as I'm aware you can't run C in the browser, so you would have to rewrite the library in JS or take a look at WebAssembly
    – dotconnor
    Nov 12 at 13:23







  • 1




    You could potentially look at using webassembly. I don't have much experience with it, but it should work with Angular malcoded.com/posts/web-assembly-angular
    – user184994
    Nov 12 at 13:24






  • 1




    You can keep your C-written code on the web server and make some HTTP requests into it with many different ways. Running the code inside web browser will be very tricky and better rewrite into JS. And finally if your Angular 2+ project is inside Electron or a similar system, then you can run C code, but this will be very similar to keeping it on web server
    – Evgeniy
    Nov 12 at 13:29










  • @Evgeniy that's a solution I would have considered if I could not find a way to "port" the native code automatically.
    – afe
    Nov 13 at 11:27










  • @dotconnor you're totally right, I hoped it was possible to "run" C code in a browser. The suggestion by you and user184994 to use WebAssembly seems to fit my needs; I did not know about this technology but it sound great! Thanks for pointing me out to the right direction.
    – afe
    Nov 13 at 11:28













0












0








0







I'd like to create an Angular project but I need to use a custom C library which is historically used in my team.
I googled a lot about this but I did not find an answer to my doubt.
Is this a thing or do I need to re-implement the library in JS / switch to a different framework?










share|improve this question













I'd like to create an Angular project but I need to use a custom C library which is historically used in my team.
I googled a lot about this but I did not find an answer to my doubt.
Is this a thing or do I need to re-implement the library in JS / switch to a different framework?







javascript angular shared-libraries






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 12 at 13:17









afe

112215




112215







  • 1




    As far as I'm aware you can't run C in the browser, so you would have to rewrite the library in JS or take a look at WebAssembly
    – dotconnor
    Nov 12 at 13:23







  • 1




    You could potentially look at using webassembly. I don't have much experience with it, but it should work with Angular malcoded.com/posts/web-assembly-angular
    – user184994
    Nov 12 at 13:24






  • 1




    You can keep your C-written code on the web server and make some HTTP requests into it with many different ways. Running the code inside web browser will be very tricky and better rewrite into JS. And finally if your Angular 2+ project is inside Electron or a similar system, then you can run C code, but this will be very similar to keeping it on web server
    – Evgeniy
    Nov 12 at 13:29










  • @Evgeniy that's a solution I would have considered if I could not find a way to "port" the native code automatically.
    – afe
    Nov 13 at 11:27










  • @dotconnor you're totally right, I hoped it was possible to "run" C code in a browser. The suggestion by you and user184994 to use WebAssembly seems to fit my needs; I did not know about this technology but it sound great! Thanks for pointing me out to the right direction.
    – afe
    Nov 13 at 11:28












  • 1




    As far as I'm aware you can't run C in the browser, so you would have to rewrite the library in JS or take a look at WebAssembly
    – dotconnor
    Nov 12 at 13:23







  • 1




    You could potentially look at using webassembly. I don't have much experience with it, but it should work with Angular malcoded.com/posts/web-assembly-angular
    – user184994
    Nov 12 at 13:24






  • 1




    You can keep your C-written code on the web server and make some HTTP requests into it with many different ways. Running the code inside web browser will be very tricky and better rewrite into JS. And finally if your Angular 2+ project is inside Electron or a similar system, then you can run C code, but this will be very similar to keeping it on web server
    – Evgeniy
    Nov 12 at 13:29










  • @Evgeniy that's a solution I would have considered if I could not find a way to "port" the native code automatically.
    – afe
    Nov 13 at 11:27










  • @dotconnor you're totally right, I hoped it was possible to "run" C code in a browser. The suggestion by you and user184994 to use WebAssembly seems to fit my needs; I did not know about this technology but it sound great! Thanks for pointing me out to the right direction.
    – afe
    Nov 13 at 11:28







1




1




As far as I'm aware you can't run C in the browser, so you would have to rewrite the library in JS or take a look at WebAssembly
– dotconnor
Nov 12 at 13:23





As far as I'm aware you can't run C in the browser, so you would have to rewrite the library in JS or take a look at WebAssembly
– dotconnor
Nov 12 at 13:23





1




1




You could potentially look at using webassembly. I don't have much experience with it, but it should work with Angular malcoded.com/posts/web-assembly-angular
– user184994
Nov 12 at 13:24




You could potentially look at using webassembly. I don't have much experience with it, but it should work with Angular malcoded.com/posts/web-assembly-angular
– user184994
Nov 12 at 13:24




1




1




You can keep your C-written code on the web server and make some HTTP requests into it with many different ways. Running the code inside web browser will be very tricky and better rewrite into JS. And finally if your Angular 2+ project is inside Electron or a similar system, then you can run C code, but this will be very similar to keeping it on web server
– Evgeniy
Nov 12 at 13:29




You can keep your C-written code on the web server and make some HTTP requests into it with many different ways. Running the code inside web browser will be very tricky and better rewrite into JS. And finally if your Angular 2+ project is inside Electron or a similar system, then you can run C code, but this will be very similar to keeping it on web server
– Evgeniy
Nov 12 at 13:29












@Evgeniy that's a solution I would have considered if I could not find a way to "port" the native code automatically.
– afe
Nov 13 at 11:27




@Evgeniy that's a solution I would have considered if I could not find a way to "port" the native code automatically.
– afe
Nov 13 at 11:27












@dotconnor you're totally right, I hoped it was possible to "run" C code in a browser. The suggestion by you and user184994 to use WebAssembly seems to fit my needs; I did not know about this technology but it sound great! Thanks for pointing me out to the right direction.
– afe
Nov 13 at 11:28




@dotconnor you're totally right, I hoped it was possible to "run" C code in a browser. The suggestion by you and user184994 to use WebAssembly seems to fit my needs; I did not know about this technology but it sound great! Thanks for pointing me out to the right direction.
– afe
Nov 13 at 11:28

















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53263016%2fis-it-possible-to-use-c-written-so-library-file-in-an-angular-2-project%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53263016%2fis-it-possible-to-use-c-written-so-library-file-in-an-angular-2-project%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Top Tejano songwriter Luis Silva dead of heart attack at 64

ReactJS Fetched API data displays live - need Data displayed static

政党