1. 31 12月, 2016 2 次提交
    • A
      Implement Router Events (#511) · c890dc35
      Arunoda Susiripala 提交于
      * Move route loading logic to a common place.
      
      * Add router events.
      
      * Add EventEmitter's core API methods.
      
      * Add example app for loading events and docs.
      
      * Fix some typos.
      
      * Get rid of Router.ready()
      
      * Remove events package.
      It's already shipping with webpack.
      
      * Handling aborting properly.
      
      * Expose simple attribute based events listener API.
      Removed the proposed event listener API from the public API.
      
      * Remove error logged when there's an abort error.
      There are many other ways to capture this error.
      So, it doesn't look nice to print this always.
      
      * Change router events to pass only the current URL as arguments.
      
      * Add a section about Cancelled Routes to README.
      c890dc35
    • N
      0f110188
  2. 29 12月, 2016 1 次提交
  3. 28 12月, 2016 1 次提交
  4. 25 12月, 2016 1 次提交
  5. 24 12月, 2016 2 次提交
  6. 22 12月, 2016 3 次提交
  7. 21 12月, 2016 1 次提交
  8. 20 12月, 2016 2 次提交
  9. 19 12月, 2016 1 次提交
    • A
      Implement the Singleton Router API (#429) · 22776c2e
      Arunoda Susiripala 提交于
      * Immplement the initial singleton Router.
      
      * Use the new SingletonRouter for HMR error handling.
      
      * Use SingletonRouter inside the Link.
      
      * Create an example app using the Router.
      
      * Make the url parameter optional in Router.push and Router.replace
      
      * Add a section about next/router in the README.
      22776c2e
  10. 18 12月, 2016 3 次提交
  11. 17 12月, 2016 3 次提交
    • A
      Bundle all the modules inside the app (#414) · b62a0e8f
      Arunoda Susiripala 提交于
      * Remove the use of CDN and bundle everything inside the app.
      We still pre-build the prefetcher because it needs
      different webpack config which only targets browsers
      supports Service Workers.
      
      * Remove cdn config item.
      We no longer using it.
      
      * Stop adding script tags when staticMarkup=true
      
      * Remove babel-plugin-transform-remove-strict-mode NPM module.
      b62a0e8f
    • N
      Programmatic API (#310) · 17082223
      Naoyuki Kanezawa 提交于
      * add 'next' api
      
      * add render APIs
      
      * add 'as' prop to Link
      
      * check Accept header to serve json response
      
      * check if response was finished on getInitialProps call
      
      * move server/app to server/index
      
      * load webpack-hot-middleware-client by absolute path
      
      * server: options for testing
      
      * add tests
      
      * example: improve
      
      * server: make dir optional
      
      * fix client routing
      
      * add parameterized routing example
      
      * link: fix display url
      
      * Add custom-server-express example (#352)
      
      * Add custom-server-express example
      
      * Remove extraneous nexts in express routes defs
      
      * Update next config in server.js
      
      * Handle accept headers totally inside Next.js (#385)
      
      * Handle accept headers totally inside Next.js
      Now user doesn't need to handle it anymore.
      
      * Move json pages serving to /_next/pages base path.
      
      * Join paths correctly.
      
      * remove next/render
      17082223
    • N
      custom document support (#405) · 8ddafaea
      Naoyuki Kanezawa 提交于
      8ddafaea
  12. 16 12月, 2016 2 次提交
    • A
      Remove console.logs (#402) · 43b0e6f5
      Arunoda Susiripala 提交于
      43b0e6f5
    • A
      Prefetch pages with Service Workers (#375) · 36abdc77
      Arunoda Susiripala 提交于
      * Register the service worker.
      
      * Update prefetcher code to do prefetching.
      
      * Implement the core prefetching API.
      support "import <Link>, { prefetch } from 'next/prefetch'"
      
      * Implement a better communication system with the service worker.
      
      * Add a separate example for prefetching
      
      * Fix some typos.
      
      * Initiate service worker support even prefetching is not used.
      This is pretty important since initiating will reset the cache.
      If we don't do this, it's possible to have old cached resources
      after the user decided to remove all of the prefetching logic.
      In this case, even the page didn't prefetch it'll use the
      previously cached pages. That because of there might be a already running
      service worker.
      
      * Use url module to get pathname.
      
      * Move prefetcher code to the client from pages
      Now we also do a webpack build for the prefetcher code.
      
      * Add prefetching docs to the README.md
      
      * Fix some typo.
      
      * Register service worker only if asked to prefetch
      We also clean the cache always, even we initialize
      the service worker or not.
      36abdc77
  13. 15 12月, 2016 1 次提交
  14. 07 12月, 2016 1 次提交
  15. 04 12月, 2016 1 次提交
  16. 02 12月, 2016 1 次提交
  17. 28 11月, 2016 1 次提交
    • A
      Add support for webpack's CommonsChunkPlugin and remove next bundle (#301) · fcd59ade
      Arunoda Susiripala 提交于
      * Add example app which demonstrate the problem.
      
      * Add the first working version.
      
      * Fix lint issues.
      
      * Add README.md
      
      * Use /_next/main.js as the main file URI
      
      * Add the support for loading the core next bundle.
      
      * Optimize the output by removing Next modules from pages.
      
      * Use the same package.json as master use.
      
      * Change the example repo's README for simpler instructions.
      
      * Change example projects package.json to support next build and start.
      
      * Change main.js into commons.js.
      
      * Add support for hot core reload and errors.
      
      * Introduce require based on eval-script.
      
      * Add error reporting support with hot reloading.
      
      * Update README.md
      fcd59ade
  18. 24 11月, 2016 1 次提交
    • N
      Handle runtime errors (#268) · c7ba914f
      Naoyuki Kanezawa 提交于
      * display runtime errors by error-debug
      
      * server: fix status
      
      * render Error component on client error
      
      * server: render runtime errors of error template
      
      * server: handle errors of error template on render404
      
      * server: add a comment
      
      * server: refactor renderJSON
      
      * recover from runtime errors
      
      * _error: check if xhr exists
      
      * _error: improve client error
      
      * _error: improve error message
      c7ba914f
  19. 23 11月, 2016 1 次提交
  20. 18 11月, 2016 1 次提交
  21. 06 11月, 2016 2 次提交
  22. 04 11月, 2016 1 次提交
  23. 03 11月, 2016 1 次提交
  24. 28 10月, 2016 2 次提交
  25. 25 10月, 2016 1 次提交
  26. 24 10月, 2016 2 次提交
  27. 22 10月, 2016 1 次提交