This is content converted from Markdown!
Here's a JSON sample:
{
"foo": "bar"
}
[ | |
{ | |
"name": "Apartment 1 in Arabkir", | |
"image": "https://media.istockphoto.com/id/1165384568/photo/europe-modern-complex-of-residential-buildings.jpg?s=1024x1024&w=is&k=20&c=1golptGIidGvd8qhQ7FvKAT2lFl7hIu8KGCJzBT_H8o=", | |
"description": "The Best Apartment", | |
"rooms": 3, | |
"location": "Arabkir, 1" | |
}, | |
{ | |
"name": "Apartment 13 in Arabkir", |
const express = require('express'); | |
const cors = require('cors'); | |
const bodyParser = require('body-parser'); | |
const formidable = require('formidable'); | |
const http = require('http'); | |
const FormData = require('form-data'); | |
const { PassThrough } = require('stream'); | |