File tree Expand file tree Collapse file tree 3 files changed +17
-7
lines changed Expand file tree Collapse file tree 3 files changed +17
-7
lines changed Original file line number Diff line number Diff line change
1
+ # starter-micro-api
2
+
3
+ This is the simplest possible nodejs api using the base http library that responds to any request with:
4
+ ```
5
+ Yo!
6
+ ```
7
+
8
+ ## Deploy in under 10 seconds
9
+
10
+ [ ![ Deploy to Cyclic] ( https://deploy.cyclic.app/button.svg )] ( https://deploy.cyclic.app/ )
11
+ - Sets up instant continuous deployment on ` git push `
12
+ - Realtime backend logs and API request monitoring
Original file line number Diff line number Diff line change @@ -15,4 +15,4 @@ mongoose.connect(mongooseURI)
15
15
16
16
const app = express ( )
17
17
18
- require ( './routes' ) ( app )
18
+ require ( './routes' ) ( app )
Original file line number Diff line number Diff line change 1
1
{
2
- "name" : " CrazyVolt " ,
2
+ "name" : " starter-micro-api " ,
3
3
"version" : " 1.0.0" ,
4
- "description" : " Freelancer on Fiverr " ,
4
+ "description" : " Cyclic.sh micro api starter " ,
5
5
"main" : " index.js" ,
6
6
"scripts" : {
7
- "test" : " echo \" Error: no test specified\" && exit 1" ,
8
- "dev" : " nodemon index.js"
7
+ "test" : " echo \" Error: no test specified\" && exit 1"
9
8
},
10
- "keywords" : [],
11
9
"author" : " " ,
12
10
"license" : " ISC" ,
13
11
"dependencies" : {
16
14
"mongoose" : " ^8.0.3" ,
17
15
"nodemon" : " ^3.0.2"
18
16
}
19
- }
17
+ }
You can’t perform that action at this time.
0 commit comments