Skip to content

Instantly share code, notes, and snippets.

@indutny
Created June 21, 2011 13:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save indutny/1037884 to your computer and use it in GitHub Desktop.
Save indutny/1037884 to your computer and use it in GitHub Desktop.
// Подключение модуля fs
var fs = require('fs');
// Вызов асинхронного метода writeFile
fs.writeFile('/tmp/1.txt', 'A poem', function(err) {
// Все готово, можно сделать что-нибудь с файлом
// Например, удалить его
fs.unlink('/tmp/1.txt', function(err) {
// Ну вот, теперь как-будто ничего и не делали
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment