For removing the content refer the following syntax :
Model.remove({}, function(err) {
console.log('collection has been removed')
});
But before removing the content, you have to access the mongodb native javascript driver, refer the following process for accessing the javascript driver:
mongoose.connection.collections['collectionName'].drop( function(err) {
console.log('collection dropped');
});