[Home](./index.md) > [bitburner](./bitburner.md) > [NS](./bitburner.ns.md) > [wget](./bitburner.ns.wget.md) ## NS.wget() method Download a file from the internet. **Signature:** ```typescript wget(url: string, target: string, host?: string): Promise; ``` ## Parameters
Parameter Type Description
url string URL to pull data from.
target string Filename to write data to. Must be script or text file.
host string _(Optional)_ Optional hostname/ip of server for target file.
**Returns:** Promise<boolean> True if the data was successfully retrieved from the URL, false otherwise. ## Remarks RAM cost: 0 GB Retrieves data from a URL and downloads it to a file on the specified server. The data can only be downloaded to a script (.js, .jsx, .ts, .tsx) or a text file (.txt, .json, .css). If the file already exists, it will be overwritten by this command. Note that it will not be possible to download data from many websites because they do not allow cross-origin resource sharing (CORS). ## Example ```js await ns.wget("https://raw.githubusercontent.com/bitburner-official/bitburner-src/master/README.md", "game_readme.txt"); ```