Live data from Hacker News

Ask HN: IOT devices – what language to choose?

news.ycombinator.com

1–7 of 7 posts

Re: Ask HN: IOT devices – what language to choose?

#2
I have worked and invested in M2M and IIOT companies, and I think the most effective languages are:

- C

- Python

- Lua

Since new devices are more powerful and full OS can now be used, JavaScript is growing. Also, in the past J2ME was available, but it was a pain in the a.

Re: Ask HN: IOT devices – what language to choose?

#3

I have worked and invested in M2M and IIOT companies, and I think the most effective languages are: - C - Python - Lua Since new devices are more powerful and full OS can now be used, JavaScript is growing. Also, in the past J2ME was available, but it was a pain in the a .

Thank you! For small sensor, what new device would allow full OS and JavaScript development? What would be consequences of that choice? Shorter battery life?

Re: Ask HN: IOT devices – what language to choose?

#6
post #5
post #4

Here's a JS that can run on small (64k ram) devices: http://duktape.org/ They also link to other small-footprint JS implementations.

Interesting! Looking... Does it have file system API? It it similar to NodeJS?

No filesystem API, it's quite different from NodeJS.

(NodeJS sits on top of a full featured unix operating system, so it can do all kinds of fancy things)

Re: Ask HN: IOT devices – what language to choose?

#7
post #6
post #5

Earlier quoted context omitted.

Interesting! Looking... Does it have file system API? It it similar to NodeJS?

No filesystem API, it's quite different from NodeJS. (NodeJS sits on top of a full featured unix operating system, so it can do all kinds of fancy things)

Got it, thank you, sir.