targets.js 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. module.exports = [
  2. {
  3. active: false,
  4. title: "DSL (2Mbs, 5ms RTT)",
  5. id: "dsl",
  6. speed: 200,
  7. latency: 5,
  8. urls: [],
  9. order: 1
  10. },
  11. {
  12. active: false,
  13. title: "4G (4Mbs, 20ms RTT)",
  14. id: "4g",
  15. speed: 400,
  16. latency: 10,
  17. urls: [],
  18. order: 2
  19. },
  20. {
  21. active: false,
  22. title: "3G (750kbs, 100ms RTT)",
  23. id: "3g",
  24. speed: 75,
  25. latency: 50,
  26. urls: [],
  27. order: 3
  28. },
  29. {
  30. active: false,
  31. id: "good-2g",
  32. title: "Good 2G (450kbs, 150ms RTT)",
  33. speed: 45,
  34. latency: 75,
  35. urls: [],
  36. order: 4
  37. },
  38. {
  39. active: false,
  40. id: "2g",
  41. title: "Regular 2G (250kbs, 300ms RTT)",
  42. speed: 25,
  43. latency: 150,
  44. urls: [],
  45. order: 5
  46. },
  47. {
  48. active: false,
  49. id: "gprs",
  50. title: "GPRS (50kbs, 500ms RTT)",
  51. speed: 5,
  52. latency: 250,
  53. urls: [],
  54. order: 6
  55. }
  56. ];