All Projects → geekape → Geek Navigation

geekape / Geek Navigation

❤️ 极客猿梦导航-独立开发者的导航站!

Projects that are alternatives of or similar to Geek Navigation

Meantorrent
meanTorrent - MEAN.JS BitTorrent Private Tracker - Full-Stack JavaScript Using MongoDB, Express, AngularJS, and Node.js, A BitTorrent Private Tracker CMS with Multilingual, and IRC announce support, CloudFlare support. Demo at:
Stars: ✭ 438 (-47.36%)
Mutual labels:  mongodb, express
Mern Crud
A simple records system using MongoDB, Express.js, React.js, and Node.js with real-time CRUD operations using Socket.io
Stars: ✭ 493 (-40.75%)
Mutual labels:  mongodb, express
Social Network
Mini social network that I made as my first web app project.
Stars: ✭ 458 (-44.95%)
Mutual labels:  mongodb, express
Practicalnode
Practical Node.js, 1st and 2nd Editions [Apress] 📓
Stars: ✭ 3,694 (+343.99%)
Mutual labels:  mongodb, express
Rest Api Nodejs Mongodb
A boilerplate for REST API Development with Node.js, Express, and MongoDB
Stars: ✭ 672 (-19.23%)
Mutual labels:  mongodb, express
Stackoverflow Clone
This project is a simplified a full stack clone of Stackoverflow.
Stars: ✭ 395 (-52.52%)
Mutual labels:  mongodb, express
Fullstack Javascript Architecture
✍️ Opinionated project architecture for Full-Stack JavaScript Applications.
Stars: ✭ 464 (-44.23%)
Mutual labels:  mongodb, express
Bulletproof Nodejs
Implementation of a bulletproof node.js API 🛡️
Stars: ✭ 4,369 (+425.12%)
Mutual labels:  mongodb, express
Node Express Mongodb Jwt Rest Api Skeleton
This is a basic API REST skeleton written on JavaScript using async/await. Great for building a starter web API for your front-end (Android, iOS, Vue, react, angular, or anything that can consume an API). Demo of frontend in VueJS here: https://github.com/davellanedam/vue-skeleton-mvp
Stars: ✭ 603 (-27.52%)
Mutual labels:  mongodb, express
Node Express Mongoose Demo
A simple demo app using node and mongodb for beginners
Stars: ✭ 4,976 (+498.08%)
Mutual labels:  mongodb, express
Rest Api Node Typescript
Building RESTful Web APIs with Node.js, Express, MongoDB and TypeScript
Stars: ✭ 373 (-55.17%)
Mutual labels:  mongodb, express
Nodeapi
Simple RESTful API implementation on Node.js + MongoDB.
Stars: ✭ 719 (-13.58%)
Mutual labels:  mongodb, express
Nodejs Api Boilerplate
A boilerplate for kickstart your nodejs api project with JWT Auth and some new Techs :)
Stars: ✭ 364 (-56.25%)
Mutual labels:  mongodb, express
Spruce
A social networking platform made using Node.js and MongoDB
Stars: ✭ 399 (-52.04%)
Mutual labels:  mongodb, express
Blog Node
基于 node + express + mongodb 的博客网站后台
Stars: ✭ 364 (-56.25%)
Mutual labels:  mongodb, express
Api Design Node V3
[Course] API design in Node with Express v3
Stars: ✭ 459 (-44.83%)
Mutual labels:  mongodb, express
Nuxt Ssr
✨vue+nuxt+sass+node+express+MongoDB 实现的SSR项目。
Stars: ✭ 323 (-61.18%)
Mutual labels:  mongodb, express
Vue Chess
Multiplayer online chess game use Vue , Nodejs, Webpack, Em6, Socket.io, Mongodb, Express
Stars: ✭ 350 (-57.93%)
Mutual labels:  mongodb, express
Vue Express Mongodb
前后端分离
Stars: ✭ 534 (-35.82%)
Mutual labels:  mongodb, express
Mevn Cli
Light speed setup for MEVN(Mongo Express Vue Node) Apps
Stars: ✭ 696 (-16.35%)
Mutual labels:  mongodb, express

极客猿梦导航

独立开发者的导航站 
Demo | 更新日志 | 提BUG | QQ交流群

版本说明

应用截图

首页

安装部署

nuxt版本

  1. 找到deploy/index.js文件,填写下服务器信息,配置下自动部署

  2. 找到package.json文件,配置下 root

  3. 找到nuxt.config.js文件,配置mongodb链接

  4. 运行npm deploy自动构建并打包到服务器上

  5. 配置下网站的nginx文件,替换掉server_name

map $sent_http_content_type $expires {
    "text/html"                 epoch;
    "text/html; charset=utf-8"  epoch;
    default                     off;
}

server {
    listen          80;             # the port nginx is listening on
    server_name     navigation.zcbing.cn;    # setup your domain here

    gzip            on;
    gzip_types      text/plain application/xml text/css application/javascript;
    gzip_min_length 1000;

    location / {
        expires $expires;

        proxy_redirect                      off;
        proxy_set_header Host               $host;
        proxy_set_header X-Real-IP          $remote_addr;
        proxy_set_header X-Forwarded-For    $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto  $scheme;
        proxy_read_timeout          1m;
        proxy_connect_timeout       1m;
        proxy_pass                          http://127.0.0.1:3000; # set the address of the Node.js instance here
    }
}
  1. 服务器项目根目录下npm install安装包

  2. npm i -g pm2安装下node进程管理

  3. pm2 start npm --name "nav" -- run start启动下服务器

  4. 访问下你配置的域名就ok了。

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].