# Node 개발자를 위한 Rust 가이드

> Clean Markdown view of GeekNews topic #2338. Use the original source for factual precision when an external source URL is present.

## Metadata

- GeekNews HTML: [https://news.hada.io/topic?id=2338](https://news.hada.io/topic?id=2338)
- GeekNews Markdown: [https://news.hada.io/topic/2338.md](https://news.hada.io/topic/2338.md)
- Type: news
- Author: [xguru](https://news.hada.io/@xguru)
- Published: 2020-06-26T10:32:35+09:00
- Updated: 2020-06-26T10:32:35+09:00
- Original source: [dev.to](https://dev.to/tindleaj/introduction-to-rust-for-node-developers-3j05)
- Points: 6
- Comments: 0

## Topic Body

- JavaScript / TypeScript 에 익숙한 개발자를 위해 유닉스 wc 명령어를 Rust로 만들어가면서 설명하는 가이드

- 특정 함수/개념들을 비슷한 문법들을 들어 비교하면서 설명

생성 : cargo new miniwc --bin

→ cargo ≒ npm

ㅤ→ cargo.toml ≒ package.json

ㅤ→ cargo.lock ≒ package-lock.json

→ cargo run start ≒ npm run start

→ struct ≒ Object

→ std::env::args() ≒ process.argv

→ std::fs::read_to_string ≒ fs.readFile

→ split_whitespace() ≒ split()

## Comments



_No public comments on this page._
