All Projects → expressjs → Expressjs.com

expressjs / Expressjs.com

Licence: other
expressjs.com

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects
CSS
56736 projects

Projects that are alternatives of or similar to Expressjs.com

Popcorn Site
Website EXPRESS.js + I18next
Stars: ✭ 84 (-98.01%)
Mutual labels:  expressjs, website
New Website
🖥 cdnjs.com website
Stars: ✭ 449 (-89.37%)
Mutual labels:  expressjs, website
Billcipher
Information Gathering tool for a Website or IP address
Stars: ✭ 332 (-92.14%)
Mutual labels:  website
Practicalnode
Practical Node.js, 1st and 2nd Editions [Apress] 📓
Stars: ✭ 3,694 (-12.53%)
Mutual labels:  expressjs
Resume Website
jsonresume website 🏡
Stars: ✭ 351 (-91.69%)
Mutual labels:  website
Nock Nock
🚪 Monitor and validate your websites to maintain maximum uptime.
Stars: ✭ 339 (-91.97%)
Mutual labels:  website
Staticsitegenerators Website
Website containing the complete listing of static site generators
Stars: ✭ 362 (-91.43%)
Mutual labels:  website
Phenomic
DEPRECATED. Please use Next.js instead.
Stars: ✭ 3,264 (-22.71%)
Mutual labels:  website
Espial
Espial is an open-source, web-based bookmarking server.
Stars: ✭ 388 (-90.81%)
Mutual labels:  website
Vue Website
🍰 想用vue把我现在的个人网站重新写一下,新的风格,新的技术,什么都是新的!
Stars: ✭ 351 (-91.69%)
Mutual labels:  website
Judo Heroes
A React application to showcase rendering with Universal JavaScript
Stars: ✭ 373 (-91.17%)
Mutual labels:  expressjs
Byr Navi
A Light-Weight and Configurable Navigation Website Framework (for BYR)
Stars: ✭ 349 (-91.74%)
Mutual labels:  website
Tgram
typegram: open source publishing platform
Stars: ✭ 340 (-91.95%)
Mutual labels:  website
Webdevscom
😍 All kinds of resources for Developers 🔱 in one place.
Stars: ✭ 364 (-91.38%)
Mutual labels:  website
Pico
Pico is a stupidly simple, blazing fast, flat file CMS.
Stars: ✭ 3,494 (-17.26%)
Mutual labels:  website
Website
Yarn package manager website
Stars: ✭ 374 (-91.14%)
Mutual labels:  website
Pug Starter
Simple pug (jade) starter [framework] enabling faster delivery of HTML & CSS projects to a private server and/or automatic deployment of GitHub pages.
Stars: ✭ 328 (-92.23%)
Mutual labels:  website
Grow To Express
渐进式Express学习课程,从零开始实现一个Express
Stars: ✭ 351 (-91.69%)
Mutual labels:  expressjs
Serve Index
Serve directory listings
Stars: ✭ 360 (-91.48%)
Mutual labels:  expressjs
Pingy Cli
The Simple Frontend Build Tool. No Configuration, No Plugins.
Stars: ✭ 390 (-90.76%)
Mutual labels:  website

expressjs.com

This is the repository of the website expressjs.com. It is hosted directly from the repository as a GitHub Pages website.

Local Setup

To preview the website locally:

  1. Install Ruby and Bundler if you don't have them already.

  2. Install the jekyll-redirect-from gem:

    $ gem install jekyll-redirect-from
    
  3. cd to the repository directory and run the following command:

    $ cd expressjs.com
    $ bundle install
    

    Bundler will look in the Gemfile for which gems to install. The github-pages gem includes the same version of Jekyll and other dependencies as used by GitHub Pages, so that your local setup mirrors GitHub Pages as closely as possible.

  4. Run Jekyll using the following command:

    $ bundle exec jekyll serve
    

    Then, load http://localhost:4000 in your browser.

Formatting

Jekyll uses a variant of Markdown known as Kramdown.

Jekyll uses the Liquid template engine for templating.

You can use GFM fenced code blocks for JavaScript; for example:

```js
var express = require('express')
var app = express()
app.listen(3000)
```

The result looks like this:

var express = require('express')
var app = express()
app.listen(3000)

The default GitHub Pages syntax highlighting has been disabled in _config.yml to allow highlighting with prism.js.

Contributing

Feel free to make changes to the template files or the document files. The supporting docs are located in their respective directories, and the API docs are located under the _includes directory.

Please see the Contributors' Guide for more information on contributing to the documentation, including information on contributing translations.

Why use Jekyll instead of an Express-based solution?

Jekyll comes built-in with GitHub Pages. Since we are already using GitHub Pages to host the website, it makes sense to leverage the capabilities it provides. It's all about using the right tool, for the right job, under the right circumstances.

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].